Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I check cocoapods version?

Tags:

How do I check cocoapods version?

I looked in the official site - https://guides.cocoapods.org/using/getting-started.html

but found only how to install \ update the latest version, or solving versions conflicts of installed gems etc'...

like image 790
Aviram Netanel Avatar asked Jun 21 '15 13:06

Aviram Netanel


People also ask

How do I know what version of CocoaPods I have Mac?

Open Xcode. Click on "Project Navigator" Click on "Pods" Open The Pod you wanna know the version of.

How do I tell what version of CocoaPods I have in flutter?

To verify the installation, run “pod –version” which would display the version of cocoapods installed on your device.

How do I update my CocoaPods iOS?

When you run pod update PODNAME , CocoaPods will try to find an updated version of the pod PODNAME , without taking into account the version listed in Podfile. lock . It will update the pod to the latest version possible (as long as it matches the version restrictions in your Podfile ).

How do I know if I have the latest version of Pod?

To check the version, enter kubectl version . In this exercise you will use kubectl to fetch all of the Pods running in a cluster, and format the output to pull out the list of Containers for each.


2 Answers

$pod --version 

Gives you the version. found it on this guide here:

https://www.cocoanetics.com/2013/11/updating-cocoapods/

like image 86
Aviram Netanel Avatar answered Oct 20 '22 20:10

Aviram Netanel


To check version of cocoapods from terminal:

For sudoless:

gem which cocoapods 

For sudo:

sudo gem which cocoapods 

My previous post

like image 43
Nagarjun Avatar answered Oct 20 '22 18:10

Nagarjun