"The sandbox is not in sync with the Podfile.lock"解决方案

安装Ruby环境

  • 安装RVM
    • $ curl -L https://get.rvm.io | bash -s stable
    • $ source ~/.rvm/scripts/rvm
    • $ rvm -v
  • 用RVM安装Ruby环境
    • rvm list known
    • rvm install 2.0.0 // (以rvm 2.0.0版本的安装为例)
  • 同样继续等待漫长的下载,编译过程,完成以后,Ruby, Ruby Gems 就安装好了。
  • 另附:
    • 查询已经安装的ruby
    • $ rvm list
    • 卸载一个已安装版本
    • $ rvm remove 1.9.2
  • 设置 Ruby 版本
    • RVM 装好以后,需要执行下面的命令将指定版本的Ruby设置为系统默认版本.
      • $ rvm 2.0.0 --default
    • 同样,也可以用其他版本号,前提是你有用 rvm install 安装过那个版本
      这个时候你可以测试是否正确
      • $ ruby -v
        • ruby 2.0.0p247 (2013-06-27 revision 41674) [x86_64-darwin13.0.0]
      • $ gem -v
        • 2.1.6这有可能是因为Ruby的默认源使用的是cocoapods.org,国内访问这个网址有时候会有问题,网上的一种解决方案是将远替换成淘宝的,替换方式如下:
      • $gem source -r https://rubygems.org/
      • $ gem source -a https://ruby.taobao.org
      • 要想验证是否替换成功了,可以执行:
      • $ gem sources -l
      • 正常的输出结果:
        • CURRENT SOURCES
        • http://ruby.taobao.org/
      • 到这里就已经把Ruby环境成功的安装到了Mac OS X上,接下来就可以进行相应的开发使用了。

安装CocoaPods

  • $ sudo gem install cocoapods
  • $ gem sources --remove https://rubygems.org/
  • //等有反应之后再敲入以下命令
  • $ gem sources -a http://ruby.taobao.org/
  • $ sudo gem install cocoapods

问题描述

  • 通常在github下载的关于iOS的开源代码,大部分都使用到CocoaPods,有的时候因为依赖关系或者版本问题不能编译运行。出现例如The sandbox is not sync with the Podfile.lock问题时候。
diff: /../Podfile.lock: No such file or directory 
diff: Manifest.lock: No such file or directory 
error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.

解决方案

  • 关闭当前的工作空间,删除掉文件夹中的workspace,然后重新pod install,install完成之后,通过workspace打开工作空间,clean+build即可。
rm -rf MyProject.xcworkspace 
pod install
  • 在pod install之前,请确保已经执行pod setup命令。

  • 如果上面方法还是没有解决的话,那试试下面的方法:

    • Project Cleanup
    1. In the project navigator, select your project
    2. Select your target
    3. Remove all libPods*.a in Linked Frameworks and Libraries
    • Update CocoaPods
    1. Launch Terminal and go to your project directory.
    2. Update CocoaPods using the command pod install

你可能感兴趣的:("The sandbox is not in sync with the Podfile.lock"解决方案)