Installing Devbox
Install Devbox
Select your OS below for the steps to install Devbox.
- Linux
- MacOS
- Windows/WSL2
- NixOS/Nixpkg
- Nix Flake
Run the following install script as a non-root user to install the latest version of Devbox:
curl -fsSL https://get.jetify.com/devbox | bash
Devbox requires the Nix Package Manager. If Nix is not detected when running a command, Devbox will install it for you in single-user mode for Linux. Don't worry: You can use Devbox without needing to learn the Nix Language.
If you would like to install Nix yourself, we recommend the Determinate Nix Installer.
Run the following install script to install the latest version of Devbox:
curl -fsSL https://get.jetify.com/devbox | bash
Devbox requires the Nix Package Manager. If Nix is not detected when running a command, Devbox will install it in multi-user mode for macOS. Don't worry: You can use Devbox without needing to learn the Nix Language.
If you would like to install Nix yourself, we recommend the Determinate Nix Installer.
You can use Devbox on a Windows machine using Windows Subsystem for Linux 2.
Installing WSL2
To install WSL2 with the default Ubuntu distribution, open Powershell or Windows Command Prompt as an administrator, and run:
wsl --install
If WSL2 is already installed, you can install Ubuntu by running
wsl --install -d Ubuntu
If you are running an older version of Windows, you may need to follow the manual installation steps to enable virtualization and WSL2 on your system. See the official docs for more details
Run the following script in your WSL2 terminal as a non-root user to install Devbox.
curl -fsSL https://get.jetify.com/devbox | bash
Devbox requires the Nix Package Manager. If Nix is not detected on your machine when running a command, Devbox will automatically install it in single user mode for WSL2. Don't worry: You can use Devbox without needing to learn the Nix Language.
Devbox is available through the Nix Package Manager.
To install on NixOS:
nix-env -iA nixos.devbox
To install on a non NixOS:
nix-env -iA nixpkgs.devbox
or
nix profile install nixpkgs#devbox
Note: New releases of Devbox need to be updated in Nixpkgs before they are available for installation. If you want to use the latest version of Devbox, you can install it using the Nix Flake.
You can also install Devbox on a NixOS/Nixpkgs system using our Nix Flake. Using the Nix Flake can help you access pre-releases and final releases of Devbox as soon as they are published.
To get the latest version:
nix profile install github:jetify-com/devbox/latest
To install a specific version, you can run the following command (only supports versions 0.13.2 and above).
nix profile install github:jetify-com/devbox/0.13.2
Updating Devbox
Devbox will notify you when a new version is available. To update to the latest released version of Devbox, you can run devbox version update
.
If you installed Devbox with Nix, you can update Devbox via Nix using nix-env -u devbox
, or nix profile upgrade
.
You can find release notes and details on the Releases page of the Devbox Github repo.
Rolling Back or Pinning a Specific Version of Devbox
You can rollback or pin the version of Devbox on your system using the DEVBOX_USE_VERSION
environment variable. For example, to use version 0.8.0:
export DEVBOX_USE_VERSION=0.8.0
Setting this variable will use the specified version of Devbox even if a newer version has been installed on your machine.
If you installed Devbox with Nixpkgs, you will need to pin Devbox in your profile or Nix configuration. You can find the Nixpkg commits for previous versions of Devbox on Nixhub.
Next Steps
- Getting Started: Learn how to create a dev environment with Devbox
- Devbox Global: Learn how to use the devbox as a global package manager