Install Numpy in pydev(eclipse)

后端 未结 5 1690
攒了一身酷
攒了一身酷 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: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)

提交回复
热议问题