0

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?

Will Thomas
  • 29
  • 1
  • 7
  • 1
    The 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
  • 2
    One 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 Answers2

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

0

you just need to add paths where your packages are installed, see the image below

enter image description here

I hope that helps !

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