-
Notifications
You must be signed in to change notification settings - Fork 3.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
Non eager updates ignored if the target flag is specified #4389
Comments
The intended use for |
Thanks for taking the time to explaining the use case of What option (or strategy) am I supposed to use to install packages in package-specific location, while still using the rest of the installed packages, without making each package installation a duplication of everything? To be more clear, we have a machine shared among thousands of users, and each one needs a possibly different combinations of packages (particularly of package's versions, since different versions have different bugs), so I install each package in its own package/version directory and use |
I don't really know, TBH. It's not a use case that has come up before. I'm not sure I'd agree with the approach of having each package in its own directory and handling it via explicit It may simply be that pip doesn't have a good means to do what you want, at the moment. You seem to be taking a pretty unique approach to managing Python installations. |
I'm going to close this since it is a duplicate of #4116. |
Description:
I'm trying to install globus-sdk which has these already satisfied depdendencies:
Installing it as:
So in this case is working fine. However I need to install globus-sdk in another directory....
What I've run:
Et voila' the upgrade strategy is ignored and the already-satisfied requirements are reinstalled, causing a lot of troubles (e.g. when I upgrade them from their proper location, I have to chase down and upgrade them in all the other copied locations)
The text was updated successfully, but these errors were encountered: