Skip to content

Instantly share code, notes, and snippets.

@barbietunnie
Last active June 1, 2022 10:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barbietunnie/30a2310b866ad1fd63147ac591643571 to your computer and use it in GitHub Desktop.
Save barbietunnie/30a2310b866ad1fd63147ac591643571 to your computer and use it in GitHub Desktop.
Pip notes

Pip notes

1. Uninstall all installed packages

pip freeze > requirements.txt
pip uninstall -r requirements.txt -y

# alternatively, you can use a single command
pip uninstall -y -r <(pip freeze)

2. Downgrade to a specific pip version

sudo python -m pip install pip==9.0.3 --upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment