I just started using virtualenv and it worked fine until yesterday. Now, and, it would seem, out of nowhere, it does not distinguish between my system environment and any env that I configured. For instance,
$ virtualenv some_env New python executable in some_env/bin/python Installing setuptools............done. Installing pip...............done. $ source some_env/bin/activate (some_env) $ yolk -l Box2D - 2.0.2b2 - active Django - 1.4 - active Fabric - 1.3.3 - active Markdown - 2.1.1 - active [...and so on, listing all my system installs]
First of all, the yolk should not even work. Initially, I would install yolk in env, and it would only show about 5 packages. That's it.
Also, before anyone asks, I have the latest virtualenv version, so -no-site-packages is the default. I get the same results if I use this option explicitly.
What's going on here?
Jamey source share