在Mac上安裝Homebrew時(shí)可能會(huì)遇到這樣的錯(cuò)誤提示:curl: (35) Server aborted the SSL handshake,下面就詳細(xì)介紹下如何在Mac上安裝homebrew
1、打開(kāi)Mack中的命令行工具
2、在打開(kāi)的命令行工具中輸入如下語(yǔ)句:
復(fù)制內(nèi)容到剪貼板
- ruby -e "$(curl --insecure -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
3、執(zhí)行上面命令后會(huì)提示輸入系統(tǒng)密碼
4、輸入密碼后會(huì)開(kāi)始下載homebrew,如果此時(shí)網(wǎng)速不穩(wěn)定可能會(huì)出現(xiàn)錯(cuò)誤提示:curl: (35) Server aborted the SSL handshake。此時(shí)需要執(zhí)行卸載操作,輸入如下命令進(jìn)行卸載:
復(fù)制內(nèi)容到剪貼板
- ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
卸載完成后再次嘗試安裝。
5、安裝完成后會(huì)有如下提示
6、此時(shí)可以在命令行中輸入命令brew進(jìn)行測(cè)試,可以看到如下結(jié)果,說(shuō)明安裝成功。
配置系統(tǒng)
現(xiàn)在的Mac OS X已經(jīng)是一個(gè)全64位的系統(tǒng),有時(shí)候我們很頭疼地告知編譯器把所有文件都編譯為64位。通常默認(rèn)系統(tǒng)PATH是/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin,我們可以稍微更改一下一包含到通過(guò)Homebrew安裝的文件。需要更改.bash_profile:
改為如下:
復(fù)制內(nèi)容到剪貼板
- 1234 # Set architecture flagsexport ARCHFLAGS="-arch x86_64"# Ensure user-installed binaries take precedenceexport PATH=/usr/local/bin:$PATH
使之生效:
安裝Xcode Command Line Tools
在App Store安裝免費(fèi)的Xcode。查看是否安裝Xcode,輸入一下命令:
如果出現(xiàn)以下提示,說(shuō)明已經(jīng)安裝:
/Applications/Xcode.app/Contents/Developer
下載安裝Xcode好后在終端輸入以下命令,安裝編譯軟件必備的Xcode Command Line Tools,它包含了GCC編譯器。
復(fù)制內(nèi)容到剪貼板
- 1 $ xcode-select --install
在彈出的對(duì)話框中安裝即可。
相關(guān)推薦:
蘋(píng)果Mac系統(tǒng)怎么同時(shí)打開(kāi)多個(gè)Finder標(biāo)簽頁(yè)?
Mac系統(tǒng)怎么一鍵回到桌面?mac系統(tǒng)快速回到桌面的教程