---
title: How to install a package manager to a Mac mini
description: This page explains how to install the Homebrew package manager to a Scaleway Mac mini.
tags: apple-silicon connection mac-mini mac-mini-m1
dates:
  validation: 2025-08-05
  posted: 2021-05-26
---
import Requirements from '@macros/iam/requirements.mdx'


<Requirements />

- A Scaleway account logged into the [console](https://console.scaleway.com)
- [Owner](/iam/concepts/#owner) status or [IAM permissions](/iam/concepts/#permission) allowing you to perform actions in the intended Organization
- An [SSH key](/organizations-and-projects/how-to/create-ssh-key/)
- A [Mac mini](/apple-silicon/how-to/create-mac-mini/)

[Homebrew](https://brew.sh/) is a package manager for macOS. It allows you to manage the packages installed on your Mac mini and provides a way to install additional software on your machine.

1. Install Homebrew by running the following command:
    ```bash
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
    ```
2. Update Homebrew by running the following command:
    ```bash
    brew update
    ```
3. Retrieve the list of all the outdated packages on your system:
    ```bash
    brew outdated
    ```
4. Upgrade these packages to the latest version available in Homebrew's repositories:
    ```bash
    brew upgrade
    ```

    <Message type="note">
      If you want to upgrade selected packages only, run the following command: `brew upgrade package-name`.
    </Message>

<Message type="note">
  Mac mini and macOS are trademarks of Apple Inc., registered in the U.S. and other countries and regions. iOS is a trademark or registered trademark of Cisco in the U.S. and other countries and is used by Apple under license. Scaleway is not affiliated with Apple Inc.
</Message>
