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
{{< tab >}}**Windows**: Itsi currently doesn't support native Windows builds, but it runs well on [WSL](https://learn.microsoft.com/en-us/windows/wsl/install).
59
85
60
-
**For Ruby 2.7**:
61
-
```bash
62
-
gem install itsi-server
63
-
```
86
+
Follow the linked instructions to install a Linux distribution like Ubuntu or Debian, and then follow the instructions in the Linux tab.
On FreeBSD you'll need to install a few build tools manually:
92
+
```bash
93
+
pkg install gmake cmake curl llvm
94
+
```
67
95
68
-
Itsi **server** supports **Ruby >= 2.7**.
96
+
Then install Itsi with GNU make to avoid build errors:
97
+
```bash
98
+
MAKE=gmake gem install itsi
99
+
```
69
100
70
-
You can install components individually:
71
-
-`gem install itsi-server`
72
-
-`gem install itsi-scheduler` (Ruby >= 3.0 only)
73
-
{{< /callout >}}
101
+
*(Installs both `itsi-server` and `itsi-scheduler`)*
74
102
75
-
{{< /tab >}}
76
-
{{< tab >}}**Windows**: Itsi currently doesn't support native Windows builds, but it runs well on [WSL](https://learn.microsoft.com/en-us/windows/wsl/install).
103
+
**For Ruby 2.7**:
104
+
```bash
105
+
MAKE=gmake gem install itsi-server
106
+
```
107
+
*(Installs `itsi-server` only; `itsi-scheduler` is not supported on Ruby 2.7)*
77
108
78
-
Follow the linked instructions to install a Linux distribution like Ubuntu or Debian, and then follow the instructions in the Linux tab.
0 commit comments