File tree Expand file tree Collapse file tree 1 file changed +47
-1
lines changed Expand file tree Collapse file tree 1 file changed +47
-1
lines changed Original file line number Diff line number Diff line change 7
7
weight : 1
8
8
---
9
9
10
- ## Install
10
+ ## Install the Dagger CLI
11
+
12
+ ### Linux
13
+
14
+ Download and install the latest ` dagger ` version:
15
+
16
+ ``` bash
17
+ curl -L https://dl.dagger.io/dagger/install.sh | BIN_DIR=$HOME /.local/bin sh
18
+ ```
19
+
20
+ Verify:
21
+
22
+ ``` bash
23
+ which dagger
24
+ ~ /.local/bin/dagger
25
+
26
+ dagger version
27
+ dagger v0.12.3 (registry.dagger.io/engine) linux/amd64
28
+ ```
29
+
30
+ ### macOS
31
+
32
+ Install the latest ` dagger ` version using ` homebrew ` :
33
+
34
+ ``` bash
35
+ brew install dagger/tap/dagger
36
+ ```
37
+
38
+ Or using ` sh ` and ` curl ` :
39
+
40
+ ``` bash
41
+ cd /usr/local
42
+ curl -L https://dl.dagger.io/dagger/install.sh | sh
43
+ ```
44
+
45
+ Verify:
46
+
47
+ ``` bash
48
+ which dagger
49
+ /opt/homebrew/bin/dagger
50
+
51
+ dagger version
52
+ dagger v0.12.3 (registry.dagger.io/engine:v0.12.3) darwin/arm64
53
+ ```
54
+
55
+
56
+
11
57
You can’t perform that action at this time.
0 commit comments