Skip to content

Instantly share code, notes, and snippets.

@Taytay
Created January 8, 2024 15:23
Show Gist options
  • Save Taytay/5dfe71e61b04912633275ccaee063c42 to your computer and use it in GitHub Desktop.
Save Taytay/5dfe71e61b04912633275ccaee063c42 to your computer and use it in GitHub Desktop.
How to uninstall pip-installed packages in conda
conda list | awk '/pypi/ {print $1}' | xargs pip uninstall -y
# Found here: https://stackoverflow.com/a/66012782
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment