本文主要是介绍The sandbox is not in sync with the Podfile.lock. Run ‘pod install‘ or update cocoapods,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
更新系统以后,swift项目编译报错。
在工程目录下运行pod install 报错:
-bash: /usr/local/bin/pod: /System/Library/Frameworks/Ruby.framework/Version
直接运行sudo gem install -n /usr/local/bin cocoapods安装还是会报错,网址被屏蔽了。需要更换源
需要下面这样做:
1、gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/
2、接下来查看源是否更换 gem sources -l
3、接下来再安装cocoapods
sudo gem install -n /usr/local/bin cocoapods
4、然后再 pod install 即可
这篇关于The sandbox is not in sync with the Podfile.lock. Run ‘pod install‘ or update cocoapods的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!