Answers for "how to set python3 as default mac"

3

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; thenn  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)
Posted by: Guest on May-13-2020
5

which python mac

$ brew update && brew upgrade python
Posted by: Guest on September-23-2020
1

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
Posted by: Guest on September-23-2020
0

use python as python3 zsh

# Go into your .zshrc file. Is there a line that reads:
alias python='python3'
Posted by: Guest on August-04-2020
1

mac catallina python3

$ brew install pyenv
Posted by: Guest on July-06-2020
0

set python 3 as default mac

[ -e ~/.profile ] && . ~/.profile
Posted by: Guest on December-01-2020

Code answers related to "how to set python3 as default mac"

Python Answers by Framework

Browse Popular Code Answers by Language