訪問網(wǎng)址https://gems.ruby-china.org/
#設置鏡像源
gem source -a https://gems.ruby-china.org
--->gem source -l
<---
*** CURRENT SOURCES ***
https://gems.ruby-china.org/
--->
#rvm ruby安裝管理器
#homebrew 第三方庫管理工具
rvm reinstall 2.3.1 --autolibs=homebrew
--->sudo gem install cocoapods
#Podfile文件外盯,文件名就是Podfile
#Podfie文件的編寫
platform :ios, '7.0'
target 'your_projectName' do
pod "AFNetworking", "~> 2.0"
........
end
--->首次安裝
pod install
--->更新 --no-repo-update 不更新本地倉庫
pod update --no-repo-update