在運(yùn)行Python項目時需要Python3颅崩。
那么就安裝Python3,使用homebrew安裝,命令如下:
brew install python3
安裝成功即可使用示弓。
由于不知道什么時候已經(jīng)安裝了Python3,系統(tǒng)給出一下提示:
Warning: python 3.6.5 is already installed, it's just not linked
You can use `brew link python` to link this version.
Python3.6.5已經(jīng)存在,但是沒有在homebrew中管理,
使用以下命令與homebrew建立管理連接:
brew link python
使用以上命令建立連接,出現(xiàn)以下錯誤:
Linking /usr/local/Cellar/python/3.6.5... Error:Permission denied @ dir_s_mkdir - /usr/local/Frameworks
沒有權(quán)限, brew link python,依然后出現(xiàn)錯誤Error
Running Homebrew as root is extremely dangerous and no longer supported.
As Homebrew does not drop privileges on installation you would be giving all
build scripts full access to your system
brew不建議你使用系統(tǒng)權(quán)限執(zhí)行以上操作,看來此路不通了枷颊。找下大哥google,提供一下方案:
發(fā)現(xiàn)/usr/local/下沒有路徑/usr/local/Frameworks
需要新建該路徑生音,并修改權(quán)限
那么就在相應(yīng)的路徑下創(chuàng)建目錄,并賦予相應(yīng)的權(quán)限:
sudo mkdir /usr/local/Frameworks
sudo chown $(whoami):admin /usr/local/Frameworks
再次運(yùn)行關(guān)聯(lián)命令:
brew link python3
Linking /usr/local/Cellar/python/3.6.5... 1 symlinks created
連接成功,O了個K久妆。