Last active
December 10, 2021 10:02
-
-
Save andreagrandi/770167f522ee17cb4e18f5896ed344ed to your computer and use it in GitHub Desktop.
Configuration for .bashrc/.zshrc for pyenv and pyenv-virtualenv
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
# Install dependencies first: | |
# brew install pyenv | |
# brew install pyenv-virtualenv | |
export PYENV_ROOT="$HOME/.pyenv" | |
export PATH="$PYENV_ROOT/bin:$PATH" | |
eval "$(pyenv init --path)" | |
eval "$(pyenv init -)" | |
eval "$(pyenv virtualenv-init -)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment