Skip to content

Instantly share code, notes, and snippets.

@dejurin
Created July 9, 2023 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dejurin/e44cb9e4206660511b6a65f3a4bd569a to your computer and use it in GitHub Desktop.
Save dejurin/e44cb9e4206660511b6a65f3a4bd569a to your computer and use it in GitHub Desktop.
Python: Check new versions of packages
"""
# Check new versions of packages
$ pip list --outdated
# Install new packages
$ pip install -U package
# Save to file
$ pip freeze > requirements.txt
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment