Skip to content

Instantly share code, notes, and snippets.

@nonameentername
Last active December 24, 2023 04:07
Show Gist options
  • Save nonameentername/ef4308165bc998e9f14930bd9cbac040 to your computer and use it in GitHub Desktop.
Save nonameentername/ef4308165bc998e9f14930bd9cbac040 to your computer and use it in GitHub Desktop.
Notas de Python
#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