I want to remove all existing SDK versions as well as Xcode 4.

Xcode 4 Guide says to do this:

sudo /Xcode4/Library/uninstall-devtools --mode=all

But I don't have Xcode4 at this location and the only place I see it is under /Developer/Applications

I've already run the uninstall-devtools that was previously found in /Developer/Applications and then did a reinstall.

What else can I do to completely remove everything and start from scratch?

link|improve this question

73% accept rate
18  
If I've answered your question, please mark it as accepted. – esqew Apr 8 '11 at 22:08
1  
+1 for this question. I'm stuck with Xcode 4.1 and can't get 4.2 installed; uninstall-devtools script doesn't exist any more. – occulus Oct 18 '11 at 11:31
1  
You should really mark this question as answered, or add a comment as to why you don't think would require a complete answer. – zenopolis Feb 21 at 9:41
feedback

5 Answers

I use this command:

sudo /Developer/Library/uninstall-devtools --mode=all
link|improve this answer
Ty, helped me to – Patrick R Jan 18 at 17:20
8  
Xcode 4.3 does not have this. It is a "normal" OS X app self contained. FYI – mediaslave Mar 6 at 21:29
feedback
sudo [xcode-path]/Library/uninstall-devtools --mode=all

Normally, [xcode-path] means /Developer, but if you have multiple versions, for example 3 is the first installed, 4 is second, /Developer will be xcode 3's root derectory and /Xcode4 for xcode 4.

link|improve this answer
feedback

Ensure Xcode and the Mac App Store apps aren't running, then trying running the uninstall script at this (different!) location:

/Library/Developer/Shared/uninstall-devtools

This is where I found it.

Also delete Install Xcode.app from Applications folder. Then run App Store again and look at Xcode.

link|improve this answer
feedback

If you have XCode 4.3.1, just Move To Trash the XCode.app file in the Applications folder.

link|improve this answer
I would add "and then Empty the trash". It gives you 1 item if you didn't have anything in it before, but takes a while because it actually removes XCode from the Mac. – Sasho Mar 22 at 10:06
feedback

su (or sudo su, whatever)

find / -name uninstall-devtools

This will reveal where the utility is...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.