Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • To "clean up" your system's default version of Python by removing all of the modules you've installed (because I now think it makes sense to use virtualenvs): (Source)
    1. pip freeze > requirements.txt
    2. pip uninstall -r requirements.txt -y

...