pip install pip-review
pip-review --local --interactive
listĀ | |
install | pip install pyyaml |
list out of date | pip list --outdated |
update with pip-review ( interactive ) | pippip3 install pip-review pip-review --local --interactive |
Update all ( pip > 23 ) | pip --disable-pip-version-check list --outdated --format=json | python3 -c "import json, sys; print('\n'.join([x['name'] for x in json.load(sys.stdin)]))" | xargs -n1 pip install -U |
update all ( old pip ) |
|
update pip | pip install --upgrade setuptools |
update with python module | python3 -m pip install --upgrade pip |
remove / uninstall | https://servicedesk.mtu.edu/TDClient/1801/Portal/KB/ArticleDet?ID=66715 pip uninstallĀ flask |