Horje
set python3 as default mac Code Example
change default python version mac
#install or update brew
$ brew install pyenv
#install
$ pyenv install 3.7.3
#make default
$ pyenv global 3.7.3
# and verify
$ 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
#reset the current shell
$ exec $0 
$ which python
#/Users/mbbroberg/.pyenv/shims/python
$ python -V
$ pip -V
#pip 19.0.3 from /Users/mbbroberg/.pyenv/versions/3.7.3/lib/python3.7/site-packages/pip (python 3.7)
use python3 as default mac
ln -s -f /usr/local/bin/python3.7 /usr/local/bin/python
Source: dev.to
which python mac
$ brew update && brew upgrade python 
set python3 as default mac
# it is said not to do but I used it anyway, because of the conveniency
$ echo "alias python=/usr/local/bin/python3.7" >> ~/.zshrc 
mac why is python installed in usr and application
$ pyenv global 3.7.3
# and verify it worked 
$ pyenv version
3.7.3 (set by /Users/mbbroberg/.pyenv/version)
use python as python3 zsh
# Go into your .zshrc file. Is there a line that reads:
alias python='python3'




Shell

Related
uptime linux Code Example uptime linux Code Example
install pytorch lightning Code Example install pytorch lightning Code Example
pm2 start yarn Code Example pm2 start yarn Code Example
android mobile screen share in ubunut Code Example android mobile screen share in ubunut Code Example
node-sass run Code Example node-sass run Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11