Created
February 18, 2020 01:55
-
-
Save alexishida/7f568a183f61ad5a39e20cf612c39f4d to your computer and use it in GitHub Desktop.
Python Commands
This file contains hidden or 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
| # 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