Created
January 8, 2024 15:23
-
-
Save Taytay/5dfe71e61b04912633275ccaee063c42 to your computer and use it in GitHub Desktop.
How to uninstall pip-installed packages in conda
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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