Install Numpy in pydev(eclipse)

后端 未结 5 1688
攒了一身酷
攒了一身酷 2021-01-26 00:44

I am trying to install a package called \'numpy\'. i have python setup in eclipse luna with the help of pydev. how do i install numpy in pydev.

tried putting numpy in

相关标签:
5条回答
  • 2021-01-26 01:31

    In Eclipse, Goto Windows->Preferences Select PyDev->Interpreters->Python Interpreters

    Then click on Manage with pip button, then you will see a new window like below, you just need to type your package and click Run/Press enter.

    After this, Click Apply and OK, then Right click on Project then click on PyDev->Remove error markers.

    Hope it works.

    0 讨论(0)
  • 2021-01-26 01:34

    Pandas can be installed after install python in to your pc. to install pandas go to command prompt and type "pip install pandas" this command collecting packages related to pandas. After if it asking to upgrade pip or if pip is not recognized by the command prompt use this command: python -m pip install --upgrade pip.

    0 讨论(0)
  • 2021-01-26 01:36

    download the required version of numpy from here http://sourceforge.net/projects/numpy/files/NumPy/1.9.2/ and the install directly ,it will run on eclipse automatically

    If it does not solve your purpose use Pip:

    pip install numpy
    
    0 讨论(0)
  • 2021-01-26 01:45

    Correct way is to create a virtualenv virtualenv ~/venvs/eclipse, install numpy (source ~/venv/eclipse/bin/activate;pip install numpy), then add the virtualenv to eclipse (see https://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python-configuration.htm)

    0 讨论(0)
  • 2021-01-26 01:46

    do you have pip installed with your python? How to install pip

    Then if you have your path variable set you can simply type "pip install numpy" into command line.

    0 讨论(0)
提交回复
热议问题