-
Notifications
You must be signed in to change notification settings - Fork 1.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
Support for uv pip install --user
#1584
Comments
Related #1526, we do not allow installation outside of a virtual environment right now. |
For a bit more context beyond tiered-managed-yet-sans-virtualenv academic and enterprise (modified cacerts, PKI trust - not everything can use In those situations it's convenient or necessary to be able to Currently one could work around this by using a virtualenv and an entrypoint script to load that virtualenv up. But there is a tendency towards extremely minimal hardened images (for general open reference check out what Microsoft is doing with the Dotnet chiseled Ubuntu images). These kinds of runtime images do not ship a shell, thus making the entrypoint workaround impossible. That leaves setting the virtualenv up manually via ENV as the main workaround, and that has implementation time ripple effects around templating of containers when doing internal containers at scale (or leaving it as a fragile pile of copy paste snippets, which people either get right, or don't). In general implementing |
I'm going to close this in favor of #2077 which has a bunch more discussion in it. |
uv pip install
does not support the flag--user
. The help forpip install --user
is as follows:-The text was updated successfully, but these errors were encountered: