'installing pandas in pydev eclipse neon 2
I have installed python 3.6.4 on my MAC OS and have Eclipse neon 2.0 running. I have added pydev plugin to work on python projects. I need to import pandas library, but there is no such option as windows -> preferences -> libraries
Can someone help me with any other way to install python libraries in neon 2.
And also how to run python cmds in terminal window in pydev?
Thanks!
Solution 1:[1]
The best way to install something would be doing a pip install pandas. You can do this in the command line or in preferences > pydev > interpreters > python interpreter > install/uninstall with pip (button).
To use the interactive console in PyDev, follow the steps on: http://www.pydev.org/manual_adv_interactive_console.html
Solution 2:[2]
I faced same problem when working with eclipse pydev project.
here are steps that helped me resolve the issue
In eclipse open the workspace, click on Windows->Preferences->pydev-> interpreters-> python interpreter -> Click on Manage with PIP
In Command to execute , enter install pandas.
Problem solved
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Fabio Zadrozny |
| Solution 2 | Aqib Javed |
