I moved to Python3 and looked back and realized I had a ton of things installed globally for Python2. With this realization I wanted to clean everything out.
Here is one method
$ pip freeze > requirements.txt
$ pip uninstall -y -r requirements.txt
I moved to Python3 and looked back and realized I had a ton of things installed globally for Python2. With this realization I wanted to clean everything out.
Here is one method
$ pip freeze > requirements.txt
$ pip uninstall -y -r requirements.txt