We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Set the environment variable PIP_REQUIRE_VIRTUALENV=true to prevent global pip installs of packages.
PIP_REQUIRE_VIRTUALENV=true
I tried this within a docker container and this is the error messages that users would get
$ docker run -it python bash root@f5040281fa1e:/# export PIP_REQUIRE_VIRTUALENV=true root@f5040281fa1e:/# pip install numpy ERROR: Could not find an activated virtualenv (required).
We want to prevent users from easily installing within $HOME/.local in nebari. Since this breaks environments often.
$HOME/.local
No response
The text was updated successfully, but these errors were encountered:
How do we deal with development packages? i.e. things we currently install with pip install -e .
pip install -e .
Sorry, something went wrong.
Resolved by #2191
No branches or pull requests
Feature description
Set the environment variable
PIP_REQUIRE_VIRTUALENV=true
to prevent global pip installs of packages.I tried this within a docker container and this is the error messages that users would get
Value and/or benefit
We want to prevent users from easily installing within
$HOME/.local
in nebari. Since this breaks environments often.Anything else?
No response
The text was updated successfully, but these errors were encountered: