Skip to content

Instantly share code, notes, and snippets.

@mattions
Created January 25, 2017 11:56
Show Gist options
  • Save mattions/1e62b463310c140c874c2471bda17512 to your computer and use it in GitHub Desktop.
Save mattions/1e62b463310c140c874c2471bda17512 to your computer and use it in GitHub Desktop.
# Upgrade your requirements
# - Finds outdated package with pip
# - install latest stable version
# - Update the requirements with the latest
pip list --outdated | cut -d' ' -f1 | xargs pip install --upgrade
pip freeze > requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment