Uninstall All Python Packages Installed By Me And Their Dependencies, Without Nuking My Mac
There are a ton of questions, but the correct way seem to manually uninstall everything that you don't need. pip doesn't uninstall the dependencies of a package on uninstall and th
Solution 1:
So if you need to find what are the dependencies of a package, just run pip show PACKAGE | grep 'Requires'
. Still, you have to know which package YOU installed, and you have to be careful because dependencies could be shared with other "system" packages.
Post a Comment for "Uninstall All Python Packages Installed By Me And Their Dependencies, Without Nuking My Mac"