Install DevSpace CLI
- npm
- yarn
- Mac Terminal
- Linux Bash
- Windows Powershell
npm install -g devspace
yarn global add devspace
curl -L -o devspace "https://github.com/loft-sh/devspace/releases/latest/download/devspace-darwin-amd64" && sudo install -c -m 0755 devspace /usr/local/bin
curl -L -o devspace "https://github.com/loft-sh/devspace/releases/latest/download/devspace-linux-amd64" && sudo install -c -m 0755 devspace /usr/local/bin
md -Force "$Env:APPDATA\loft"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
Invoke-WebRequest -URI "https://github.com/loft-sh/devspace/releases/latest/download/devspace-windows-amd64.exe" -o $Env:APPDATA\loft\devspace.exe;
$env:Path += ";" + $Env:APPDATA + "\loft";
[Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
Check Environment Variable $PATH
Line 4 of this install script adds the install directory %APPDATA%\devspace
to the $PATH
environment variable. This is only effective for the current powershell session, i.e. when opening a new terminal window, devspace
may not be found.
Make sure to add the folder %APPDATA%\devspace
to the PATH
environment variable after installing DevSpace via Powershell. Afterwards, a reboot might be necessary.
To confirm that DevSpace is successfully installed, reboot and test via:
devspace --version
Alternatively, you can simply download the binary for your platform from the GitHub Releases page and add this binary to your PATH.