Created
August 29, 2014 23:36
-
-
Save mpkocher/b1d5db71f8ebd84a3287 to your computer and use it in GitHub Desktop.
Update all packages in virtualenv env via pip
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
function update_ve_pkgs() { | |
echo "Updating pip packages" | |
for i in $(pip freeze | tr "==" " " | awk '{print $1}') ; do pip install --upgrade $i; done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment