POD Install
-
Open terminal and type:
sudo gem install cocoapods
The Gem will get installed in Ruby inside the System library. Or try on Mac OS X v10.11 (El Capitan), type:
sudo gem install -n /usr/local/bin cocoapods
If there is an error “activesupport requires Ruby version >= 2.xx”, then install latest activesupport first by typing in the terminal.
sudo gem install activesupport -v 4.2.6
-
After installation, there will be a lot of messages. Read them and if no error found, it means the CocoaPods installation is done. Next, you need to setup the CocoaPods master repository. Type in the terminal:
pod setup
And wait it will download the master repository. The size is very big (370.0 MB in December 2016). So it can be a while. You can track of the download by opening Activity and go to the Network tab and search for “git-remote-https”. Alternatively, you can try adding “–verbose” to the command like so:
pod setup --verbose
-
Once done, it will output “Setup Complete”, and you can create your Xcode project and save it.
-
Then in the terminal, cd to your Xcode project root directory (where your
.xcodeproj
file resides) and type:pod init
-
Then open your project’s podfile by typing in terminal:
open -a Xcode Podfile
-
Your Podfile will get open in text mode. Initially there will be some default commands in there. Here is where you add your project’s dependencies. For example, in the podfile, type
pod 'AFNetworking', '0.9.1'
(This line is an example of adding the AFNetworking library to your project.)
Other tips:
Uncomment
platform :ios, '9.0'
Uncommentuser_frameworks!
if you’re using SwiftWhen you are done editing the podfile, save it and close Xcode.
-
Then install pods into your project by typing in terminal:
pod install
Depending how many libraries you added to your podfile for your project, the time to complete this varies. Once completed, there will be a message that says
“Pod installation complete! There are X dependencies from the Podfile
and X total pods installed.”Now close your Xcode project. Then locate and open the
.xcworkspace
Xcode project file and start coding. (You should no longer open thexcodeproj
file.)