Install Numpy on VirtualEnv on Windows

How to install numpy in virtualenv ...

easy_install numpy causes an error. I cannot use the binary installer because it will install numpy in the main python installation and not in virtualenv ..

thank

+5
source share
2 answers

You cannot use easy_install directly for quite technical reasons that I would not want about. There is a solution, although not optimal: once in a virtual environment, go to numpy sources and run:

python setupegg.py install

The key point is setupegg.py instead of setup.py.

+1
source

( ) - , Python , .

, . , exe- numpy-, , , .

+1

All Articles