ragul ml
ragul ml

Reputation: 733

How to find if cocoaPods is installed in my mac

Can anyone help to find if cocoaPod is installed in my machine. I was trying to use Google Map in my application. So i was asked to install CocoaPods. Could any one help me explain me the purpose.

Upvotes: 38

Views: 66825

Answers (3)

Anshad Rasheed
Anshad Rasheed

Reputation: 2566

try to find pod version by running this in terminal

pod --version

If command not found then you didn't installed

To install cocoapods

sudo gem install cocoapods

Reference : https://cocoapods.org

Upvotes: 78

ragul ml
ragul ml

Reputation: 733

Solution found: Initially the Cocoapods has to be installed using the command sudo gem install cocoapods (I had some problem with proxies so it dint work for me initially and i resolved it).

To find if Cocoapods is installed or not run cmd (pod --version). if theresult is (Not Found) Pods is not installed. Please check for the internet connection and their proxies, these things took me huge time.

Upvotes: 21

Lumialxk
Lumialxk

Reputation: 6369

Enter this line and see if you get error:

 pod search realm

Upvotes: 0

Related Questions