xcode

How to update Xcode from command line


I am trying to update Xcode from the command line. Initially I tried running:

xcode-select --install

which resulted in this message:

xcode-select: error: command line tools are already installed, use "Software Update" to install updates

So the question remains, is there a way to update Xcode from the command line?


Solution

  • Already installed

    What you are actually using is the command to install the Xcode command line tools - xcode-select --install. Hence the error message you got - the tools are already installed.

    The command you need to update Xcode is softwareupdate command [args ...]. You can use softwareupdate --list to see what's available and then softwareupdate --install -a to install all updates or softwareupdate --install <product name> to install just the Xcode update (if available). You can get the name from the list command.

    As it was mentioned in the comments here is the man page for the softwareupdate tool.

    Command Notes
    xcode-select --install Installs the Xcode Command-Line Tools if not already installed.
    softwareupdate --list See what updates are currently available.
    softwareupdate --install <product name> Install just the Xcode update (if available). You can get the name from the list command.
    man softwareupdate Documentation for the command softwareupdate

    2019 Update

    A lot of users are experiencing problems where softwareupdate --install -a will in fact not update to the newest version of Xcode. The cause for this is more than likely a pending macOS update (as @brianlmerritt pointed out below). In most cases updating macOS first will solve the problem and allow Xcode to be updated as well.

    Updating Xcode Command Line Tools

    A large portion of users are landing on this answer in an attempt to update the Xcode Command Line Tools. The easiest way to achieve this is by removing the old version of the tools, and installing the new one.

    sudo rm -rf /Library/Developer/CommandLineTools
    xcode-select --install
    

    A popup will appear and guide you through the rest of the process. Or, if you already have installed, that command says:

    xcode-select: note: Command line tools are already installed. Use "Software Update" in System Settings or the softwareupdate command line interface to install updates