iOS & macOS Tools Archives
Complete archive of Xcode and Command Line Tools. Direct links to official Apple Developer downloads for CI/CD setup or legacy app maintenance.
Authentication Required: Apple requires an active session. Please log in to developer.apple.com in your browser before clicking any download links.
Xcode Archives
IDE for iOS, macOS, watchOS, and tvOS
Command Line Tools
Essential compilers and tools without full Xcode
Xcode Setup Guide
Multiple Xcode Versions
If you extract multiple Xcode versions (e.g., to /Applications), you must switch the active developer directory:
# Check current path
xcode-select -p
# Switch to a specific version
sudo xcode-select -s /Applications/Xcode_14.3.1.app/Contents/Developer
You must accept the license agreement after switching:
sudo xcodebuild -license accept
Command Line Tools Network Install
If you don't want to download the DMG, you can trigger the network installer for the CLI tools:
# Trigger installation dialog
xcode-select --install
# Verify installation
clang --version
git --version
Note: This will download the default tools compatible with your current macOS version.
