Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Document installation using macports #7162

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 11 additions & 1 deletion docs/current_docs/partials/_install-cli.mdx
Expand Up @@ -10,8 +10,12 @@ Install the `dagger` CLI following the steps below.
<Tabs>
<TabItem value="macOS">

We assume that you have [Homebrew](https://brew.sh/) installed. If you do, you can install `dagger` with a single command:
We assume that you have [MacPorts](https://macports.org) or [Homebrew](https://brew.sh/) installed. If you do, you can install `dagger` with a single command:

```shell
sudo port install dagger
```
or
```shell
brew install dagger/tap/dagger
```
Expand All @@ -36,6 +40,12 @@ curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.9.7 sh
dagger 0.9.7 (GIT_SHA) darwin/arm64
```

With Macports, this would look like:

```shell
sudo port install dagger @0.11.0
```

If your user account doesn't have sufficient privileges to install in `/usr/local` and `sudo` is available, use the following command instead:

```shell
Expand Down