8

I would like to be able to uninstall monotouch framework from my Mac OS X, but I don't see a way to do so...

Any help would be appreciated...

David Basarab
  • 72,212
  • 42
  • 129
  • 156
Jonas Stawski
  • 6,682
  • 6
  • 61
  • 106

3 Answers3

16

Easy to go just 2 steps:

sudo rm -rf /Developer/MonoTouch
sudo pkgutil --forget com.xamarin.monotouch.pkg

Source

basti
  • 2,649
  • 3
  • 31
  • 46
11

Delete /Developer/MonoTouch

Mikayla Hutchinson
  • 16,113
  • 2
  • 44
  • 50
  • 4
    After removing that folder, you may also want to run this command at the command-line: sudo pkgutil --forget com.novell.monotouch.pkg – orj Mar 12 '11 at 07:37
2

Additionally to the other answers if you may want to delete other xamarin packages installed, enter:

pkgutil --packages

and look for all com.xamarin packages and remove them via:

sudo pkgutil --forget com.xamarin.[name of the package]
r3dDoX
  • 211
  • 3
  • 2