安裝cocoapods遇到error: RPC failed; curl 56 SSLRead() return error -36問題
阿新 • • 發佈:2018-11-07
在安裝cocoapods遇到的問題
[!] /usr/bin/git clone https://github.com/CocoaPods/Specs.git masterCloning into 'master'...error: RPC failed; curl 56 SSLRead() return error -36fatal: The remote end hung up unexpectedlyfatal: early EOFfatal: index-pack failed
解決方案: 開啟終端命令列,輸入一下命令:
sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
並一定是這行程式碼,要根據自己的情況,來修改這個命令列
-
單個xcode
-
安裝多個xcode
那麼你的命令列就要修改一下:
sudo xcode-select -switch /Applications/Xcode 7.3.1.app/Contents/Developer
根據你預設的xcode來修改在/Applications/和/Contents/Developer中間的app的名字,如果你預設的是Xcode x.x.x.app,中間就要替換掉喲!
ps:問題還存在,把xcode全部解除安裝,只裝一個最新的。
- 最簡便的方式是: 先在終端輸入”sudo xcode-select -switch “,然後,開啟Xcode—>右鍵顯示包內容,找到Developer資料夾拖到終端裡面
PS:一些xcode-select的命令的使用:
xcode-select [-help]xcode-select [-switch xcode_folder_path]xcode-select [-print-path]xcode-select [-version]
例如:
//列印當前xcode的路徑 xcode-select --print-path //輸出: /Applications/Xcode.app/Contents/Developer