I want to create a virtualenv without global python packages, but with the scipy distribution that is shared; installing scipy takes quite a while and I don't want to go through the motions too often.
So I run add2virtualenv /Library/Python/2.7/site-packages/scipy
and after running add2virtualenv it shows the directory is added. (I doublechecked, it is the right directory).
Then I issue workon myfile
to be sure the working directories are reloaded.
However, when I try to load scipy, it is an ImportError: No module named scipy
. This is unexpected.
Has anyone used a global scipy in a non-global-sitepackages virtualenv?