Answers for "how to uninstall all python packages in windws"

3

pip uninstall all packages

pip uninstall -y -r <(pip freeze)
Posted by: Guest on July-27-2021
1

pip uninstall all

pip freeze | xargs pip uninstall -y
Posted by: Guest on March-26-2021

Code answers related to "how to uninstall all python packages in windws"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language