Snippets tagged “uninstall”
3 snippets use this tag.
- How to uninstall Python 2.7 on a Mac OS X 10.6.4?Python
To uninstall Python 2.7 on a Mac OS X 10.6.4, you can use the following commands in the terminal:
- python setup.py uninstallPython
The command python setup.py uninstall is not a built-in command in Python and it may not work as expected.
- What is the easiest way to remove all packages installed by pip?Python
The easiest way to remove all packages installed by pip is to use the command pip freeze to get a list of all installed packages, and then pipe that list to pip uninstall -y, like this: