iOS 艺海拾贝iOS入的那些坑iOS开发技术分享

The sandbox is not in sync with

2016-05-26  本文已影响71人  木子加白水

1.移除现有Ruby默认源

$gem sources --remove https://rubygems.org/

2.使用新的源

$gem sources -a https://ruby.taobao.org/

3.验证新源是否替换成功

'$gem sources -l

4.安装CocoaPods

  1. $sudo gem install cocoapods备注:苹果系统升级OS X EL Capitan后改为$sudo gem install -n /usr/local/bin cocoapods

  2. $pod setup

5.更新gem

$sudo gem update --system

6.新建工程,并在终端用cd指令到文件夹内

$pod search 第三方

7.新建文件 vim “Podfile”,

$vim Podfile

写入以下内容并保存

** 小提示:**(终端vim文件 按 i 可编辑 ,esc 退出编辑,:wq 可保存退出)

platform:ios, '6.0'

pod 'AFNetworking', '~> 2.3.1'`<-------第三方

8.导入第三方库

$pod install

9.退出终端

以下是我用以前的安装流程安装时出现的一些错误

终端 cocoapods 下载bug调试:

** 错误1:**

** 错误2:**

Operation not permitted - /usr/bin/pod

** 错误3:**

Specs satisfying the AVOSCloud (~> 3.1.6.3) dependency were found, but they required a higher minimum deployment target.

PS

如果在下载第三方库的demo的时候发现运行不了,报错如下

error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.

简单的解决的办法就是打开终端 cd 到文件目录下,执行pod install.如果不行尝试一下命令,然后在执行pod install

sudo chmod 777 Pods

sudo xcode-select -switch /Applications/Xcode.app

上一篇下一篇

猜你喜欢

热点阅读