Skip to content

Latest commit

 

History

History

python

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Python

Uninstall All Python Packages

Mac

pip freeze | xargs pip uninstall -y

PC

for /f "delims=" %a in ('pip freeze') do (pip uninstall -y %a)

List pip package versions available

In the following command replace <package> with the package name

pip install <package>==