Skip to content

Instantly share code, notes, and snippets.

@duiliogp
Created June 12, 2023 20:21
Show Gist options
  • Save duiliogp/16f262581dc300c7edb869a38010e516 to your computer and use it in GitHub Desktop.
Save duiliogp/16f262581dc300c7edb869a38010e516 to your computer and use it in GitHub Desktop.
Python Notes

Python Notes

Install packages

pip install <package-name>

pip install -R requirements.txt # install all packages at this file.

Uninstall a package

pip uninstall <package-name>

Show all installed packages

pip freeze
pip freeze > requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment