Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to uninstall Carthage from OS X?

Tags:

macos

carthage

Somehow, my Carthage installation is corrupted (seems like I have two versions installed) due to the fact that I installed using the Carthage.pkg file then also with brew install carthage. I'd like to completely remove Carthage(s) but can't find the way to do so.

like image 666
Van Du Tran Avatar asked Sep 29 '16 14:09

Van Du Tran


1 Answers

In order to delete Carthage installed from:

  1. Carthage.pkg:

    $ rm -rf /usr/local/bin/carthage
    $ sudo rm -rf /Library/Frameworks/CarthageKit.framework
    
  2. Homebrew:

    $ brew uninstall --force carthage
    
like image 59
Andrea Mugnaini Avatar answered Oct 15 '22 14:10

Andrea Mugnaini