Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »


pip install pip-review
pip-review --local --interactive



list 
installpip install pyyaml
list out of date
pip list --outdated
pip3 list --outdated
update all
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1  | xargs -n1 pip install -U
pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1  | xargs -n1 pip3 install -U


https://www.activestate.com/resources/quick-reads/how-to-update-all-python-packages/

pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}
update pip
pip install --upgrade setuptools
update with python modulepython3 -m pip install --upgrade pip


remove / uninstall

https://servicedesk.mtu.edu/TDClient/1801/Portal/KB/ArticleDet?ID=66715

pip uninstall  flask








  • No labels