Skip to content
This repository was archived by the owner on Aug 11, 2023. It is now read-only.

Latest commit

 

History

History
13 lines (13 loc) · 260 Bytes

File metadata and controls

13 lines (13 loc) · 260 Bytes

PIP

List

python -m pip list

Freeze

python -m pip freeze>req.txt

Install

python -m pip install <package-name>

Uninstall

python -m pip uninstall <package-name>

Uninstall all packages

  • !

Upgrade

python -m pip install --upgrade pip