TheLearner
TheLearner

Reputation: 19507

Uninstall Xcode 4 and use Xcode 3

I am having problems with SVN and also provisioning with Xcode 4 and I want to uninstall it.

How do I uninstall Xcode 4 and will I be fine using Xcode 3 from now on or what does everyone recommend.

Upvotes: 6

Views: 2495

Answers (2)

fbrereto
fbrereto

Reputation: 35925

Uninstalling Xcode is pretty straightforward, and involves the use of the Terminal:

sudo <Xcode>/Library/uninstall-devtools --mode=all

where <Xcode> should be replaced by the path to which the tools were installed (e.g., /Developer).

Upvotes: 9

Paul R
Paul R

Reputation: 212979

If you really do want to uninstall rather than just have two or more versions co-existing then use:

/Developer/Library/uninstall-devtools

Upvotes: 7

Related Questions