Snippets tagged “pip-freeze”
1 snippet uses this tag.
- 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: