-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
virtualenv sensitive to unnormalized python paths #165
Comments
If anybody else hits this issue, one workaround (if you don't care about any site packages) is to use --no-site-packages to set up the virtualenv. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Just add a comment if you want to keep it open. Thank you for your contributions. |
1 similar comment
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Just add a comment if you want to keep it open. Thank you for your contributions. |
This is becoming obsolete with #1366 now in full swing. |
If you install a package globally with easy_install, then create a virtualenv,
sys.path
will be sensitive to how you invoke the virtualenv Python interpreter.A rough way to reproduce:
You should see that /usr/lib/pythonX.Y/site-packages/SomePackage-X.Y.egg appears in different locations on sys.path depending on how the Python interpreter is invoked. In practice this can mean the global egg does or does not override the local egg depending on the invocation.
Note: this has only been reproduced on two different Ubuntu systems, I'm not sure about other platforms.
The text was updated successfully, but these errors were encountered: