zsh: command not found: python3

|

nano ~/.zshrc

두번째 줄 export 어쩌고 주석을 지우고…

brew 설치

/usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”

sudo rm -rf /Library/Frameworks/Python.framework
rm /usr/local/bin/python3*
brew uninstall python3 또는 brew uninstall --ignore-dependencies python3
brew install python3
which python

#pip 설치
sudo python3 -m pip install --upgrade pip

참고 : https://wookiist.tistory.com/39

Comments