Pod安装需要很长时间而不能安装

时间:2016-06-17 06:28:17

标签: ios swift xcode cocoapods

我正在尝试安装Cocoapods,并且在下载AlamoFire时有点挂起! 有人遇到过类似的问题吗?

1)打开终端

2)sudo gem install cocoapods     sudo gem install -n / usr / local / bin cocoapods

3)pod设置

4)创建一个xcode项目

5)cd"项目根目录的路径"

6)pod init

7)打开-a Xcode Podfile

8)pod' Alamofire','〜> 3.4'

即使经过漫长的等待,感觉就像是被绞死而且没有成功!

提前致谢!!!

2 个答案:

答案 0 :(得分:3)

在您的pod文件中使用此选项 - >

**source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
target 'Pod DemoTests' do
pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire'
end**

这将解决您的问题..

答案 1 :(得分:1)

pod安装

1.sudo gem install cocoapods 2.pod init 3.在podfile中导入所需的框架 4.pod安装 5.打开工作区。