我们都知道第三方库,一般使用cocoapods管理,cocoapods在我们IOS开发中有着很大的作用。
好了,现在看下它的安装步骤: 1.打开终端,输入
sudo gem install cocoapods
结果:
WARNING: Improper use of the sudo command could lead to data loss or the deletion of important system files. Please double-check your typing when using sudo. Type "man sudo" for more information. To proceed, enter your password, or type Ctrl-C to abort. Password: (输入本机的密码)
2.输入密码后,按回车建,等待。。。
结果:
ERROR: Could not find a valid gem ‘cocoapods‘ (>= 0), here is why: Unable to download data from https://rubygems.org/ - Errno::ETIMEDOUT: Operation timed out - connect(2) (https://rubygems.org/latest_specs.4.8.gz) ERROR: Possible alternatives: cocoapods
3.输入
gem sources --remove https//rubygems.org/
按回车建 结果:
source https//rubygems.org/ not present in cache
4.输入
gem sources -a http://ruby.taobao.org/
结果:
http://ruby.taobao.org/ added to sources
5.输入(删除一些不必要的)
gem sources --remove https://rubygems.org/
结果:
https://rubygems.org/ removed from sources
6.输入
gem sources -l
结果:
*** CURRENT SOURCES *** http://ruby.taobao.org/
7.输入
pod setup
结果:
-bash: pod: command not found
8.重新执行:
sudo gem install cocoapods
结果
Password: (输入本机的密码) 结果; 是一串数据更新。。。(等待)
9.输入
pod setup
结果
Setting up CocoaPods master repo Setup completed
10.(搜索,不区分大小写,写得越详细也好,找到路径越精确) 输入
pod search afnetwork
结果: 一串关于(afnetwork)的东西(搜到的结果)
11.到了这一步,我们需要把建好自己的工程,然后在终端输入 cd(记得cd后面要空格)把工程文件拖到这来。按回车建
12.输入
vi Podfile
按‘i’进入编辑状态,下面是一些你要编辑的内容:(也就是你的要更新那些第三方库)
1 platform:ios 2 pod ‘Reachability‘,‘~>3.1.0‘ 3 4 platform:ios,‘6.0‘ 5 pod ‘AFNetworking‘,‘~> 2.3.1‘
编辑好之后,按‘esc’,然后按‘shift+:’,键入 wq(保存退出)
13.更新,输入
pod update
14.安装,输入
pod install
完成上面步骤后(工程会多一些文件),到工程文件打开.xcworkspace的文件,就可以了,需要用到什么,就添加头文件就OK了。
时间: 2024-10-10 03:46:04