How to uninstall all python packages installed by pip on Windows Posted by BinaryStudy on November 25, 2024 Use the following command in cmd on Windows to remove all packages installed by pip − pip freeze > unins && pip uninstall -y -r unins && del unins Comments
Comments
Post a Comment