Last active
April 14, 2016 12:39
-
-
Save akkijp/05a563b78d0adff5cb996776e006fab0 to your computer and use it in GitHub Desktop.
pip pip3 関連のパッケージを一括アップグレードするスクリプト
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias pip-upgrade-all="pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs pip install -U" | |
alias pip3-upgrade-all"pip3 freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs pip3 install -U" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment