Skip to content

Instantly share code, notes, and snippets.

@brianjbayer
Created November 19, 2023 04:21
Show Gist options
  • Save brianjbayer/ede9e54aa31380144e9e4ff400b146ea to your computer and use it in GitHub Desktop.
Save brianjbayer/ede9e54aa31380144e9e4ff400b146ea to your computer and use it in GitHub Desktop.
How to update your macOS system software

Mac Update the System

You can either update the system software using just the System Settings application or start with the terminal and command line. But you will still need to use the System Settings application to complete the update.

It is easier to just use System Settings, but you do you.


Software Update in System Settings

You will need to locate the Software Update functions in the System Settings app:

  • System Settings > General > Software Update

The softwareupdate Command

You can start the software update process using the terminal and the softwareupdate command.

  1. To list the available updates to install...

    softwareupdate --list
    
  2. To install the updates...

    softwareupdate --install --all
    

    🔒 You will probably be prompted for your Mac password

    Once the software updates are 100% downloaded, the terminal will "hang". At this point you should see the prompt and button to reboot the machine in System Settings > General > Software Update

😒 it seems Apple has removed the ability to --restart automatically for a software update, this includes (Xcode) Command Line Tools


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment