2024-11-03 21:54:31 +02:00
|
|
|
# Get Codex
|
|
|
|
|
2024-11-08 12:15:24 +02:00
|
|
|
### Linux, macOS and Windows (msys2)
|
2024-11-03 21:54:31 +02:00
|
|
|
|
|
|
|
```shell
|
|
|
|
# latest version
|
|
|
|
curl -s https://get.codex.storage/install.sh | bash
|
|
|
|
```
|
|
|
|
|
|
|
|
```shell
|
|
|
|
# specific version
|
|
|
|
curl -s https://get.codex.storage/install.sh | VERSION=0.1.7 bash
|
|
|
|
```
|
|
|
|
|
|
|
|
```shell
|
|
|
|
# latest codex and cirdl
|
|
|
|
curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true bash
|
|
|
|
```
|
|
|
|
|
|
|
|
```shell
|
|
|
|
# codex and cirdl with required libraries on Windows with msys2
|
2024-11-08 12:15:24 +02:00
|
|
|
curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true WINDOWS_LIBS=true bash
|
2024-11-03 21:54:31 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
```shell
|
|
|
|
# help
|
|
|
|
curl -s https://get.codex.storage/install.sh | bash -s help
|
|
|
|
```
|
2024-11-08 12:15:24 +02:00
|
|
|
|
|
|
|
### Windows
|
|
|
|
|
|
|
|
```batch
|
|
|
|
:: latest version
|
2024-11-08 12:29:05 +02:00
|
|
|
curl -sO https://get.codex.storage/install.cmd && install.cmd
|
2024-11-08 12:15:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
```batch
|
|
|
|
:: specific version
|
2024-11-08 12:29:05 +02:00
|
|
|
curl -sO https://get.codex.storage/install.cmd && set VERSION=0.1.7 & install.cmd
|
2024-11-08 12:15:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
```batch
|
|
|
|
:: latest codex and cirdl
|
2024-11-08 12:29:05 +02:00
|
|
|
curl -sO https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & install.cmd
|
2024-11-08 12:15:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
```batch
|
|
|
|
:: codex and cirdl without libraries
|
2024-11-08 12:29:05 +02:00
|
|
|
curl -sO https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & set WINDOWS_LIBS=true & install.cmd
|
2024-11-08 12:15:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
```batch
|
|
|
|
:: help
|
2024-11-08 12:29:05 +02:00
|
|
|
curl -sO https://get.codex.storage/install.cmd && install.cmd help
|
2024-11-08 12:15:24 +02:00
|
|
|
```
|