mac default python version code example
Example 1: check python version mac
python3 --version
python --version
Example 2: change default python version mac
$ brew install pyenv
$ pyenv install 3.7.3
$ pyenv global 3.7.3
$ pyenv version
3.7.3 (set by /Users/mbbroberg/.pyenv/version)
$ echo -e 'if command -v pyenv 1>/dev/null 2>&1; then\n eval "$(pyenv init -)"\nfi' >> ~/.bash_profile
$ exec $0
$ which python
$ python -V
$ pip -V
Example 3: which python mac
$ brew update && brew upgrade python
Example 4: set python 3 as default mac
[ -e ~/.profile ] && . ~/.profile