Wednesday, September 28, 2022

Python Cheatsheet

1. End users can download and install any package into their Python environment. Typically this is done with pip, using a command like:
python3 -m pip install package-name
2. Uninstall Packages
python -m pip uninstall package-name
3. List Installed Packages
python -m pip list
and
python -m pip freeze

No comments:

Post a Comment