Skip to content

Instantly share code, notes, and snippets.

@fizz
Last active February 12, 2020 01:16
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 fizz/3ffd98a5a5a4f23141c13bf836bbf284 to your computer and use it in GitHub Desktop.
Save fizz/3ffd98a5a5a4f23141c13bf836bbf284 to your computer and use it in GitHub Desktop.
Uninstall a package from all pyenv virtualenvs that have it installed (e.g. in order to use pipx)
ipython 2>&1 | tail | xargs -IJK -p zsh -c 'eval "$(pyenv init -)" && eval "$(pyenv virtualenv-init -)" && pyenv activate JK && pip uninstall -y ipython'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment