iOS開發 解決pod install報錯 SSL_ERROR_SYSCALL, errno 54
可能原因1:要pod的庫稍微有點大,把postBuffer改的大一些
解決:開啟終端輸入 git config --global http.postBuffer 524288000,重新podinstall。
可能原因2:電腦上包含多個xcode
解決:選擇某個xcode,sudo xcode-select -switch /Applications/Xcode 10.0.app/Contents/Developer,或者解除安裝掉其他版本的xcode,只安裝最新版本的
可能原因3:gem的版本或者cocopod的版本太低
解決:檢視gem版本,gem --version, 更新gem版本,gem update --system。檢視cocopod版本,pod --version,升級cocopod,https://www.jianshu.com/p/92fc5d97df21
相關文章
- npm install 報錯解決NPM
- pod install 和 rvm install ruby-xxxx報錯解決辦法
- electron npm install 報錯解決方案NPM
- Python報錯:PermissionError: [Errno 13] Permission denied解決方案PythonError
- pod install / pod update 速度慢的終極解決方案
- 解決pod install update很慢的問題
- 解決npm install 報錯,親測有效NPM
- npm install 安裝報錯解決方案NPM
- 解決npm install報錯Tried to download(403)NPM
- 使用npm install報錯-4048 operation not permitted解決NPMMIT
- Laravel Mix - 執行 NPM install 報錯解決辦法LaravelNPM
- 關於npm install安裝報錯的解決辦法NPM
- flutter開發提示Flutter device daemon #1報錯解決方法Flutterdev
- window環境下npm install node-sass報錯的解決方法NPM
- react-native install 報錯 No git binary found in $PATH解決方法ReactGit
- iOS開發執行報錯、常見問題iOS
- npm install報錯、失敗,出現network proxy問題解決方案NPM
- pecel install swoole 報錯 ssl.h 找不到時的解決辦法
- Xcode更新後Pod init出錯的解決方案XCode
- mybatis報錯解決MyBatis
- Laravel 54 配置 Elasticsearch 時的報錯提示LaravelElasticsearch
- INSTALL_FAILED_NO_MATCHING_ABIS錯誤解決AI
- iOS xcode9.3 pod 刪除框架之後,clang報錯:not found框架iOSXCode框架
- MySQL資料庫錯誤server_errno=2013的解決MySql資料庫Server
- 解決yum [Errno 256] No more mirrors to try
- Python 執行報錯 PermissionError: [Errno 13] Permission denied: '***.***'PythonError
- 解決fitz模組報錯
- SS報錯的解決
- 解決eslint報錯EsLint
- iText中文,報錯解決
- pod install命令後tool 'xcodebulid' required Xcode...錯誤XCodeUI
- ubuntu apt-get install xxx報錯無法下載的解決方法Ubuntuapt-get
- iOS 元件化開發(四):fastlane實現pod自動化iOS元件化AST
- Appium+python自動化54-appium-doctor報錯已解決(SyntaxError: Unexpected token ...)APPPythonError
- pip install scrapy報錯:error: UnableError
- PermissionError: [Errno 13] Permission denied解決辦法Error
- yum [Errno 256] No more mirrors to try 解決方法
- macosx 10.11 python pip install 出現錯誤OSError: [Errno 1] Operation not permitted:MacPythonErrorMIT