numpy - Installing Python package from source into virtualenv directory -
Newbie programmer here. This is a variation.
I am running Python 2.7 on Windows 7 and using GIT Bash Shell. I am trying to install the numpy package in the virtual directory in my work directory. I can not install it due to errors due to its dependencies using the $ pip install -r requirements.txt
or $ pip installed numpy
commands. Here's one.
Although I can download and install directly executable binary (.exe), but it has forced me to install in the c: / Python27 / Lib / site-packages directory
. I have to install it in my VirtualVoice Work Directory, e.g. c: / users / myname / projects / myproject / myvirtualenv
.
How do I download required numpy files in a temporary directory and use PIP or other tool installed in my VirtualNew directory.
I have researched that I can choose a target directory in PP using the -t option, for example, " pip installed numpy - target = c: / users / MyName / projects / MyProject / myvirtualenv
". But I still can not get dependency errors, so it is not working for me until I understand how to download numpy files (including all dependencies) in one directory and then install from there.
Thank you for your help!
Comments
Post a Comment