pod install出现[!] /bin/bash -c错误,Installing Realm报错

pod install出现错误,具体错误信息如下:

Installing Realm (1.0.2)
[!] /bin/bash -c 
set -e
sh build.sh cocoapods-setup

core is not a symlink. Deleting...
Downloading dependency: core 1.3.1
Downloading core failed:
curl: (35) Server aborted the SSL handshake

 根据提示curl: (35) Server aborted the SSL handshake,发现curl无法访问https,网上找到资料

brew install curl  //使用这条命令升级curl

升级完成之后

brew link curl --force

然后

rm -rf Pods  删除工程目录下的pods文件夹,然后重新pod install,耐心等待一段时间Realm更新就会成功

原文地址:https://www.cnblogs.com/wobuyayi/p/5732576.html