Yogesh Chauhan's Blog

How to uninstall Cocoapods from the Mac OS?

in Miscellaneous on March 4, 2020

Step 1: Check the different version(s) of Cocoapods installed on your Mac using following command.


gem list --local | grep cocoapods

The output will look like this:


cocoapods (1.9.0)
cocoapods-core (1.9.0)
cocoapods-deintegrate (1.0.4)
cocoapods-downloader (1.3.0)
cocoapods-plugins (1.0.0)
cocoapods-search (1.0.0)
cocoapods-stats (1.1.0)
cocoapods-trunk (1.4.1)
cocoapods-try (1.1.0)

Step 2: Remove one by one using following command.


gem uninstall [name of the cocoapod]

gem uninstall cocoapods
gem uninstall cocoapods-core
gem uninstall cocoapods-deintegrate

If the terminal tells you that you don’t have permission to remove it then use “sudo” in command.


sudo gem uninstall [name of the cocoapod]

sudo gem uninstall cocoapods
sudo gem uninstall cocoapods-core
sudo gem uninstall cocoapods-deintegrate

For multiple version specify the version to be removed.


gem uninstall cocoapods -v 0.20.2

Step 3: Finally, remove residual artifacts using following command.


rm -rf ~/.cocoapods

Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
Add animated hamburgers menu using Hamburgers collection on GitHubCSSThe Drupal flowDrupalAggregate Functions Examples in Postgres for BeginnersPostgresWhat is XP (Extreme Programming) and When should it be used?MiscellaneousHow to create a for loop in SCSS (Sass)?SCSSHow to remove a specific item from an array in JavaScript?JavaScriptThe SELECT DISTINCT Statement in SQLSQL/MySQLHow states work in React?ReactCanvas Drawing in HTML5HTMLWhat does it mean by Continuous Integration, Continuous Delivery and Continuous Deployment?MiscellaneousKilling A Project Part 4: What Would Be Your Top 3 Priorities For Planning The Cancellation?MiscellaneousHow to set default timezone using PHP?PHP