I have created a virtualenv using the --no-site-packages option and installed lots of libraries. Now I would like to revert the --no-site-packages option and use also the global packages.

Can I do that without recreating the virtualenv?

More precisely:

I wonder what exactly happens when creating a virtualenv using the --no-site-packages option as opposed to not using that option.

If I know what happens then I can figure out how to undo it.

link|improve this question

feedback

2 Answers

up vote 12 down vote accepted

Try removing (or renaming) the file no-global-site-packages.txt in your Lib folder under your virtual environment.

link|improve this answer
2  
That will do it. The existence (or nonexistence) of that file is the only direct effect of the no-site-packages flag. Virtualenv's customized site.py looks for that file to decide whether to add global site-packages directories to sys.path. – Carl Meyer Jul 31 '10 at 2:58
Brilliant! That did it! Thanks a lot for that answer, and thanks to Carl Meyer for the additional comment. – Olivier Verdier Jul 31 '10 at 8:44
feedback

Try adding a symlink between /virtualenv_root/lib/ and /path/to/desired/site-packages/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.