I'm trying to add these libraries into Eclipse.(Numpy, Scipy, Pandas and Matplotlib and statsmodels) I've already installed python 2.7. If so, can someone tell me how?
Asked
Active
Viewed 561 times
0
-
1The 2nd answer at http://stackoverflow.com/questions/9657449/python-newbie-importing-numpy-module-in-eclipse explains how to add libraries for use in PyDev in Eclipse. It is also explained at http://stackoverflow.com/questions/3675585/how-to-add-python-libraries-to-eclypse-and-pydev. – Jul 24 '15 at 22:27
-
2One option is to install a distribution of Python that includes all those libraries like Enthought or Anaconda and point your Eclipse at it. – paisanco Jul 24 '15 at 23:15
2 Answers
1
Open the windows command prompt or cmd (not the python prompt) In the cmd run the command:
pip install numpy
pip install pandas
pip install matplotlib
pip install scipy
Once installed, they are available in eclipse

Davis Anunda
- 11
- 3
0
you just need to add paths where your packages are installed, see the image below
I hope that helps !

Ciasto piekarz
- 7,853
- 18
- 101
- 197