I am very new to macOS, I just need a mac with Xcode to compile my app. However, with macOS Sierra, I have a problem with my USB that is not working anymore (i can\'t plug my ip
Double-click the xip
file and it will extract the Xcode application. Move Xcode
to the Applications
folder and you are good to go.
The App Store should present the Xcode update once you update to Sierra (macOS 10.12). If it doesn't you can download Xcode directly from the App Store. The preferences are stored in /Users/<username>/Library/Preferences
and are not impacted by updating the version of Xcode or OS.
Update: 08 Oct, 2020: Easy way
Old Ans
Convert the xip to a dmg by opening a terminal to the folder where the xip is placed and run the following commands:
$ open Xcode_X_Y_Z.xip
$ mkdir Xcode-tmp
$ mv Xcode.app Xcode-tmp/Xcode.app
$ hdiutil create -volname "Xcode" \
-srcfolder Xcode-tmp \
-ov -format UDZO \
Xcode_X.Y.Z.dmg
$ rm -rf Xcode-tmp
For example, if a XIP file is located on your desktop: open the “Terminal” application found in /Applications/Utilities/ and run the following command:
xip -x ~/Desktop/Xcode_8.2.1.xip