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 pyenv | |
| brew update | |
| brew install pyenv | |
| # add pyenv init to your to enable shims and autocompletion | |
| echo -e 'if command -v pyenv 1>/dev/null 2>&1; then\n eval "$(pyenv init -)"\nfi' >> ~/.bash_profile | |
| # show all possible version of python | |
| pyenv install --list |