Skip to content

Instantly share code, notes, and snippets.

@alexishida
Created February 18, 2020 01:55
Show Gist options
  • Select an option

  • Save alexishida/7f568a183f61ad5a39e20cf612c39f4d to your computer and use it in GitHub Desktop.

Select an option

Save alexishida/7f568a183f61ad5a39e20cf612c39f4d to your computer and use it in GitHub Desktop.
Python Commands
# Resolvendo problemas com o pip
python -m pip install --user somepackage
python3 -m pip install --user somepackage
# Adicionar .bashrc
pip() ( python -m pip "$@" )
pip3() ( python3 -m pip "$@" )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment