I have a python program that I want to install in my virtualenv - this is a zip package that I need to unzip and then run setup.py, but my question is how to get these decompressed files into my virtualenv, so what Is the package installed in the virtual site sites folder?
I can also install my virtualenv from the inside using pip install <package name> , but for some reason the package that loads the PIP is deprecated.
So - can anyone tell me some simple steps to install the package manually?
So far I have the basic commands for downloading Virtualenv:
-bash-3.2$ source ~/.bashrc -bash-3.2$ workon test (test)-bash-3.2$ //Now I'm working on my virtualenv, but where do I go after this??
So - does it matter where I unzip the python package / program - or do I need to enter the virtual file first before unpacking? After I download virtualenv and I will use it with the "workon test" command, will there be any python package that I install, no matter what directory I find it, install in the appropriate virtualenv site-packages folder ?
Option 1 is to unpack the python program in / home / username / tmp - then go into my virtual machine, go to this folder and run the setup.py program - assuming virtualenv will transfer all the relevant files to its own website in batches.
OR scenario 2 - unpack files directly into site packages and run them from there (after logging into virtualenv), etc.
Thanks for helping Python clutz with this!
python installation pip virtualenv virtualenvwrapper
Jamison May 12 '11 at 14:26 2011-05-12 14:26
source share