Given some python package in /usr/share/pyshared/ or /usr/lib/pythonX.Y/dist-packages/ (take python-numpy or python-scipy for example), how do I add that package to a virtualenv?
When adding the package to the virtualenv, does it require that it uses the "normal" python installation method (setpy.py etc.) to install, or have it's own?
Basically, I want to be able to easily add python packages, which have C extensions that are complex (numpy, scipy, pyQt/pyside, pygtk etc.), to a virtualenv.
--system-site-packagesoption, which includes all of packages in dist-packages/site-packages. I want to only include one package. – aragilar Jun 28 '12 at 5:04