sudo gem install cocoapods如果输入密码后很长时间没有反应,或提示无法找到,可能地址被墙了,那要先输入:
gem sources --remove https://rubygems.org/ //等有反应之后再敲入以下命令 gem sources -a http://ruby.taobao.org/
gem sources -l
*** CURRENT SOURCES *** http://ruby.taobao.org/
pod install 命令 ----安装仓库。
pod search QRCodeReaderViewController输出:
-> QRCodeReaderViewController (3.4.0) Simple QRCode reader for iOS 7 and over pod 'QRCodeReaderViewController', '~> 3.4.0' - Homepage: https://github.com/YannickL/QRCodeReaderViewController - Source: https://github.com/yannickl/QRCodeReaderViewController.git - Versions: 3.4.0, 3.3.0, 3.2.3, 3.2.2, 3.2.1, 3.2.0, 3.1.0, 3.0.0, 2.0.0, 1.0.1, 1.0.0 [master repo]到项目的.xcodeproj目录,建立Podfile文件:
touch Podfile
vim Podfile
source 'https://github.com/CocoaPods/Specs.git' platform :ios, '7.0' pod 'QRCodeReaderViewController', '~> 3.4.0'保存后,输入命令:
pod install
open MyProject.xcworkspace打开项目,不要用.xcodeproj打开项目。
有时经常卡住,可能要这样清理一下。如果xcode升级,这里有时也要这么操作一下:
pod repo remove master --删除主仓库
pod setup --重建安装
pod install
跳过更新仓库的操作直接安装类库
pod install --verbose --no-repo-update
pod update --verbose --no-repo-update