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
pypa/pip#5221
I think what happened here is that source failed, and so run.sh ran $PYTHON -m pip install --upgrade pip, which bricked my system pip install.
source
run.sh
$PYTHON -m pip install --upgrade pip
Maybe change: source $VENV_NAME/bin/activate
source $VENV_NAME/bin/activate
to: source $VENV_NAME/bin/activate || exit
source $VENV_NAME/bin/activate || exit
(or equivalent)
The text was updated successfully, but these errors were encountered:
Thanks for letting me know! I did not considered that before. I will include a better error handling in the scripts :)
Sorry, something went wrong.
Let me know if it stills breaks after the latest commit, I'll close this now.
No branches or pull requests
pypa/pip#5221
I think what happened here is that
source
failed, and sorun.sh
ran$PYTHON -m pip install --upgrade pip
, which bricked my system pip install.Maybe change:
source $VENV_NAME/bin/activate
to:
source $VENV_NAME/bin/activate || exit
(or equivalent)
The text was updated successfully, but these errors were encountered: