Skip to main content

Zip Packages

Zip packages of EveBox can be found at the following URLS:

Install Scripts

Linux

On Linux, the standalone binary can be downloaded and installed with a single command:

curl -sSf https://evebox.org/install.sh | sh

The script installs the EveBox binary for x86_64 or aarch64 into ~/.local/bin or /usr/local/bin, verifying its checksum along the way.

For the latest development build, use the development installer:

curl -sSf https://evebox.org/install-devel.sh | sh

This is a convenience wrapper. The regular installer continues to accept the --devel option:

curl -sSf https://evebox.org/install.sh | sh -s -- --devel

Other options are passed after sh -s --.

OptionDescription
--develInstall the latest development build
--version <VERSION>Install a specific release version
--bin-dir <DIR>Install into DIR (skips the directory prompt)
-y, --yesDon't prompt; use the default install directory

The EVEBOX_INSTALL_DIR environment variable can also be used to set the installation directory (--bin-dir takes precedence).

Windows PowerShell

On 64-bit Windows, install the latest release with:

irm https://evebox.org/install.ps1 | iex

The script downloads the Windows x64 zip, verifies its SHA-256 checksum, and installs evebox.exe into %LOCALAPPDATA%\EveBox\bin by default. It also adds that directory to the user PATH if needed.

For the latest development build, use the development installer:

irm https://evebox.org/install-devel.ps1 | iex

This is a convenience wrapper. The regular installer continues to accept the -Devel option:

& ([scriptblock]::Create((irm https://evebox.org/install.ps1))) -Devel
OptionDescription
-DevelInstall the latest development build
-Version <VERSION>Install a specific release version
-BinDir <DIR>Install into DIR
-NoModifyPathDo not add the install directory to the user PATH

The EVEBOX_INSTALL_DIR environment variable can also set the installation directory (-BinDir takes precedence).

Example Installation on Linux

curl -OL https://evebox.org/files/release/latest/evebox-0.27.0-linux-x64.zip unzip evebox-0.27.0-linux-x64.zip cd evebox-0.27.0-linux-x64 ./evebox server --help