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>==