Skip to content

Instantly share code, notes, and snippets.

@citmusa
Last active May 17, 2017 23:22
Show Gist options
  • Save citmusa/4e5d46766b21e16812920f6763fe148e to your computer and use it in GitHub Desktop.
Save citmusa/4e5d46766b21e16812920f6763fe148e to your computer and use it in GitHub Desktop.
Update pip packages ov virtualenv
# All in environment
pip freeze --local | xargs -n1 pip install -U
#Also saving previous values
pip freeze --local | tee before_upgrade.txt | xargs -n1 pip install -U
#Just outdated
pip list --outdated --format=freeze --local | xargs -n1 pip install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment