2fdecc045f
Signed-off-by: Sam Alba <sam.alba@gmail.com>
1.2 KiB
1.2 KiB
Installing Dagger
Option 1 (Mac OS only): install from Homebrew
From your Mac OS terminal, run the following command:
brew install dagger/tap/dagger
Option 2: install from a shell script
From a terminal, run the following command:
curl -sfL https://dagger-io.s3.amazonaws.com/dagger/install.sh | sh
You now have the dagger binary in the local directory under ./bin/dagger
.
You can then install it globally on your system:
sudo mv ./bin/dagger /usr/local/bin
Option 3: Manually fetch the latest binary release from Github
Open your web browser to the latest release.
From the assets section, download the archive corresponding to your OS and Arch.
Option 4: Compile from source
You will need Go version 1.16 or later.
- Clone the dagger repository
git clone https://github.com/dagger/dagger.git
- Build the
dagger
binary.
cd dagger; make
- Copy the
dagger
tool to a location listed in your$PATH
. For example, to copy it to/usr/local/bin
:
cp ./cmd/dagger/dagger /usr/local/bin