Last active
December 24, 2023 04:07
-
-
Save nonameentername/ef4308165bc998e9f14930bd9cbac040 to your computer and use it in GitHub Desktop.
Notas de Python
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
#installar brew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
#actualizar brew | |
brew update | |
#installar git | |
brew install git | |
#installar pyenv | |
brew install pyenv | |
#installar virtualenv | |
brew install pyenv-virtualenv | |
#installar python | |
pyenv install 3.12.1 | |
#installar un virtualenv | |
pyenv virtualenv 3.12.1 jirafa | |
#usar el virtualenv | |
pyenv shell jirafa | |
#installar ipython | |
pip install ipython |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment