Get Archivist - Linux, macOS and Windows (msys2)

# latest version
curl -s https://get.archivist.storage/install.sh | bash

# specific version
curl -s https://get.archivist.storage/install.sh | VERSION=0.1.7 bash

# latest archivist and cirdl
curl -s https://get.archivist.storage/install.sh | CIRDL=true bash

# archivist and cirdl with required libraries on Windows with msys2
curl -s https://get.archivist.storage/install.sh | CIRDL=true WINDOWS_LIBS=true bash


Get Archivist - Windows (cmd)

:: latest version
curl -sO https://get.Archivist.storage/install.cmd && install.cmd

:: specific version
curl -sO https://get.archivist.storage/install.cmd && set VERSION=0.1.7 & install.cmd

:: latest archivist and cirdl
curl -sO https://get.archivist.storage/install.cmd && set CIRDL=true & install.cmd

:: archivist and cirdl without libraries
curl -sO https://get.archivist.storage/install.cmd && set CIRDL=true & set WINDOWS_LIBS=false & install.cmd


Get Archivist - Windows (PowerShell)

# latest version
curl.exe -sO https://get.Archivist.storage/install.cmd; cmd.exe /c install.cmd

# specific version
curl.exe -sO https://get.archivist.storage/install.cmd; cmd.exe /c "set VERSION=0.1.7 & install.cmd"

# latest archivist and cirdl
curl.exe -sO https://get.archivist.storage/install.cmd; cmd.exe /c "set CIRDL=true & install.cmd"

# archivist and cirdl without libraries
curl.exe -sO https://get.archivist.storage/install.cmd; cmd.exe /c "set CIRDL=true & set WINDOWS_LIBS=false & install.cmd"