You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## 0 Currently supported operating systems and chip architectures
3
+
!!! note
4
+
Currently supported operating systems and chip architectures:
4
5
5
-
* Darwin/arm64
6
-
* Darwin/amd64
7
-
* Linux/amd64
6
+
1. Darwin/arm64
7
+
2. Darwin/amd64
8
+
3. Linux/amd64
8
9
9
10
## 1 Install dtm binary with script
10
11
@@ -16,26 +17,21 @@ sh -c "$(curl -fsSL https://download.devstream.io/download.sh)"
16
17
17
18
This will download the corresponding `dtm` binary to your working directory according to your OS and chip architecture, and grant the binary execution permission.
18
19
19
-
> Optional: you can then move `dtm` to a place which is in your PATH. For example: `mv dtm /usr/local/bin/`.
20
+
!!! note "Optional"
20
21
21
-
## 2 Install dtm with [asdf](https://asdf-vm.com/)
22
+
Move `dtm` to a place which is in your PATH. For example: `mv dtm /usr/local/bin/`.
23
+
24
+
## 2 Download manually from the GitHub Release page
25
+
26
+
You could find the latest version of `dtm` on the [Release](https://github.com/devstream-io/devstream/releases/) page and click Download.
27
+
28
+
If your browser isn't working properly, "curl" is also a good option:
22
29
23
30
```shell
24
-
# Plugin
25
-
asdf plugin add dtm
26
-
# Show all installable versions
27
-
asdf list-all dtm
28
-
# Install specific version
29
-
asdf install dtm latest
30
-
# Set a version globally (on your ~/.tool-versions file)
31
-
asdf global dtm latest
32
-
# Now dtm commands are available
33
-
dtm help
31
+
# Version v0.10.3, OS type linux and CPU arch amd64 need to be modified as needed
## 3 Download manually from the GitHub Release page
37
-
38
-
You could find the latest version of `dtm` on the [Release](https://github.com/devstream-io/devstream/releases/) page and click Download.
39
35
Note that there are multiple versions of `dtm` available, so you will need to choose the correct version for your operating system and chip architecture. Once downloaded locally, you can choose to rename it, move it to the directory containing `$PATH` and give it executable permissions, for example, on Linux you can do this by running the following command.
40
36
41
37
```shell
@@ -47,5 +43,20 @@ Then you can verify that the permissions and version of dtm are correct with the
47
43
48
44
```shell
49
45
$ dtm version
50
-
0.10.0
46
+
0.10.3
47
+
```
48
+
49
+
## 3 Install dtm with [asdf](https://asdf-vm.com/)
50
+
51
+
```shell
52
+
# Plugin
53
+
asdf plugin add dtm
54
+
# Show all installable versions
55
+
asdf list-all dtm
56
+
# Install specific version
57
+
asdf install dtm latest
58
+
# Set a version globally (on your ~/.tool-versions file)
0 commit comments