How to downgrade or install an older version of Cocoapods

a fair player picture a fair player · Dec 10, 2013 · Viewed 184.9k times · Source

How can I downgrade Cocoapods to an older version, or how can I install an older version of Cocoapods?

Answer

NSMutableString picture NSMutableString · Dec 10, 2013

to remove your current version you could just run:

sudo gem uninstall cocoapods

you can install a specific version of cocoa pods via the following command:

sudo gem install cocoapods -v 0.25.0

You can use older installed versions with following command:

pod _0.25.0_ setup