Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 414 Bytes

pip.md

File metadata and controls

25 lines (21 loc) · 414 Bytes

How to upgrade pip

sudo python -m pip install --upgrade pip

How to list installed packages

pip list

How to list the location of an installed package

pip show <package>

How to install a package

# Pakcages will be installed deep under %USERPROFILE%
pip install --user --upgrade <package>

How to uninstall a package

pip uninstall -y <package>