Merge pull request #337 from VHarisop/pip_latest

Updated pip sheet with upgrade for newer versions
This commit is contained in:
Chris Allen Lane 2017-09-04 20:04:25 -04:00 committed by GitHub
commit 7089bef7cc
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'