Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 284 Bytes

pip.md

File metadata and controls

17 lines (9 loc) · 284 Bytes

Pip Usage

Here are a couple Pip commands to get you started. To install a Python package:

$ pip install <package>

To upgrade a package:

$ pip install --upgrade <package>

To see what's installed:

$ pip freeze

To uninstall a package:

$ pip uninstall <package>