Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to downgrade or install an older version of Cocoapods

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

like image 836
a fair player Avatar asked Dec 10 '13 06:12

a fair player


1 Answers

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 
like image 103
NSMutableString Avatar answered Sep 21 '22 12:09

NSMutableString