Updated pip sheet with an upgrade option for newer versions

This commit is contained in:
VHarisop 2017-06-02 13:09:48 +03:00
parent edd7b5e806
commit bcb0d71dd3
1 changed files with 3 additions and 0 deletions

View File

@ -23,5 +23,8 @@ pip list --outdated
# Upgrade all outdated packages, thanks to http://stackoverflow.com/a/3452888
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
# Upgrade outdated packages on latest version of pip
pip list --outdated --format=freeze | cut -d = -f 1 | xargs -n1 pip install -U
# Install specific version of a package
pip install -I SomePackage1==1.1.0 'SomePackage2>=1.0.4'