I have been trying to delete some Python packages, and found the path for them in the Terminal, and it gave me /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages, but for some reason I went into Library in my Finder and Frameworks wasn't there.
Asked
Active
Viewed 330 times
0
-
Possible duplicate of [How do I remove packages installed with Python's easy\_install?](https://stackoverflow.com/questions/1231688/how-do-i-remove-packages-installed-with-pythons-easy-install) – Ben Aubin Nov 23 '17 at 19:53
1 Answers
1
You're looking at your user Library (~/Library
), not your system library where python is installed (/Library
).
In Finder, press ⌘shiftG and then enter /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages
, but it's probably best to just uninstall your packages completely and correctly.

Ben Aubin
- 5,542
- 2
- 34
- 54