由于项目需要,今天在xcode里增加一些第三方的库,在我Podfile文件里添加了第三方库,如下:
platform :ios,'7.0'
pod'UMengSocial','~> 4.4'
pod'ZXingObjC','~>3.0'
pod'LBXAlertAction'
当我在工程中执行install pods后,项目提示我pods路径错误,在网上搜了一些解决的方法,在终端中执行:sudo gem install -n /usr/local/bin cocoapods (备注:苹果系统升级 OS X EL Capitan 后安装改为这个),更新PODS后,报diff: /../Podfile.lock: No such file or directory 错误,当我再执行install pods后出现这样的提示:
Update all pods
Re-creating CocoaPods due to major version update.
Updating local specs repositories
Analyzing dependencies......,之后在网上搜了一下解决方法,把podfile文件改为下面的方式:
platform :ios,'7.0'
target '工程名字' do
pod'UMengSocial','~> 4.4'
pod'ZXingObjC','~>3.0'
pod'LBXAlertAction'
end
原文地址如下:http://www.mobile-open.com/2016/960882.html,
当我改了这个文件之后,重新再终端里找到自己工程的路径,执行:pod install,随后就出现了这些:
Updating local specs repositories
Analyzing dependencies
Downloading dependencies
Installing AFNetworking 2.5.0 (was 2.5.0)
Installing SDWebImage (3.7.2)
Generating Pods project
Integrating client project
Sending stats
这种状态下就已经添加成功了,但是在Installing这个状态下,时间比较成,可以耐心的等一下,谢谢!
网友评论