15 lines
300 B
Markdown
15 lines
300 B
Markdown
|
# Installing Dagger
|
||
|
|
||
|
1. Build the `dagger` command-line tool. You will need [Go](https://golang.org) version 1.16 or later.
|
||
|
|
||
|
```
|
||
|
$ make
|
||
|
```
|
||
|
|
||
|
2. 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
|
||
|
```
|
||
|
|