Skip to content

Installation

Nebi manages Pixi workspaces, install Pixi first:

Terminal window
curl -fsSL https://pixi.sh/install.sh | bash

See the Pixi installation docs for more options.

Install the CLI (nebi package) and the desktop application (nebi-desktop) with pixi global install.

Terminal window
pixi global install nebi

This installs the latest release of nebi to ~/.local/bin (CLI and desktop app):

Terminal window
curl -fsSL https://nebi.nebari.dev/install.sh | sh -s -- --desktop

Make sure it’s on your PATH:

Terminal window
export PATH="$HOME/.local/bin:$PATH"

Advanced options:

  • --version <ver>: Install specific version (e.g. v0.5.0)
  • --install-dir <path>: Set install directory (default: ~/.local/bin)
  • --desktop: Install the desktop app
  • -h, --help: Show the help message
Terminal window
irm https://nebi.nebari.dev/install.ps1 | iex

Advanced options:

  • -Version <ver>: Install specific version (e.g. v0.5.0)
  • -InstallDir <path>: Set install directory (default: $env:LOCALAPPDATA\nebi)
  • -Desktop: Install the desktop app

Nebi CLI and desktop packages are distributed on conda-forge, you can install it with conda in your base environment:

Terminal window
conda install conda-forge::nebi

For certain cases like development or testing, you can install Nebi from source.

Prerequisite: Go version 1.24+

Terminal window
go install github.com/nebari-dev/nebi/cmd/nebi@latest