25

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'...

Cœur
  • 37,241
  • 25
  • 195
  • 267
Aviram Netanel
  • 12,633
  • 9
  • 45
  • 69

2 Answers2

48
$pod --version

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

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

Nagarjun
  • 6,557
  • 5
  • 33
  • 51
Aviram Netanel
  • 12,633
  • 9
  • 45
  • 69
21

To check version of cocoapods from terminal:

For sudoless:

gem which cocoapods

For sudo:

sudo gem which cocoapods

My previous post

Nagarjun
  • 6,557
  • 5
  • 33
  • 51