Skip to content

Instantly share code, notes, and snippets.

@loisaidasam
Created April 21, 2017 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loisaidasam/6f549bb1a7e2323007869595d4f16000 to your computer and use it in GitHub Desktop.
Save loisaidasam/6f549bb1a7e2323007869595d4f16000 to your computer and use it in GitHub Desktop.
Clean out virtualenv - uninstall all installed libs
#!/bin/bash
libs=$(pip freeze |cut -d'=' -f1)
#echo $libs
pip uninstall -y $libs
@loisaidasam
Copy link
Author

prob would be easier to do rmvirtualenv then mkvirtualenv ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment