Skip to content

Instantly share code, notes, and snippets.

@sahina
Last active December 15, 2016 04:37
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 sahina/e5805f5e3a15c1cf2b9ebc6095a80a18 to your computer and use it in GitHub Desktop.
Save sahina/e5805f5e3a15c1cf2b9ebc6095a80a18 to your computer and use it in GitHub Desktop.
remove pip packages that are not in requirements file
pip freeze | grep -v -f requirements.txt - | grep -v '^#' | xargs pip uninstall -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment