Install Devsy
Choose either Devsy Desktop or the Devsy CLI.
Install Devsy
Download Devsy Desktop:
- macOS Silicon/ARM
- macOS Intel/AMD
- Windows
- Linux AppImage
- Linux DEB (Debian/Ubuntu)
- Linux RPM (Fedora/RHEL/openSUSE)
- Linux Flatpak
Previous Releases
For earlier versions, visit the GitHub releases page
Linux Packages
The AppImage is tested on:
- Debian 12 and newer
- Ubuntu 22.04 and newer
- Fedora 36 and newer
- openSUSE Leap 15.3 and newer
- openSUSE Tumbleweed
- Arch Linux
Most modern desktop distros include the required libraries. If the AppImage fails to launch, install FUSE and the standard GTK/Electron runtime libs:
- Debian/Ubuntu:
sudo apt-get install libfuse2 libgtk-3-0 libnotify4 libnss3 libxss1 libxtst6 xdg-utils libatspi2.0-0 - Fedora:
sudo dnf install fuse-libs gtk3 libnotify nss libXScrnSaver libXtst xdg-utils at-spi2-core - openSUSE:
sudo zypper in libfuse2 gtk3 libnotify4 mozilla-nss libXss1 libXtst6 xdg-utils
Windows Packages
Make sure you have the following dependencies installed for the Desktop App to work:
WebView 2 ships with recent versions of Windows. Install it only if you hit issues.
Linux Packaging
Devsy publishes .deb, .rpm, .AppImage, and Flatpak builds. The DEB and RPM packages declare their runtime dependencies; the AppImage and Flatpak bundle theirs.
Install Devsy CLI
The Devsy CLI manages Devsy from a terminal. Choose an installation method below, or install it later from the Desktop App.
- MacOS Silicon/ARM
- MacOS Intel/AMD
- Windows
- Linux AMD
- Linux ARM
curl -L -o devsy "https://github.com/devsy-org/devsy/releases/latest/download/devsy-darwin-arm64" && sudo install -c -m 0755 devsy /usr/local/bin && rm -f devsy
curl -L -o devsy "https://github.com/devsy-org/devsy/releases/latest/download/devsy-darwin-amd64" && sudo install -c -m 0755 devsy /usr/local/bin && rm -f devsy
md -Force "$Env:APPDATA\devsy"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
Invoke-WebRequest -URI "https://github.com/devsy-org/devsy/releases/latest/download/devsy-windows-amd64.exe" -OutFile $Env:APPDATA\devsy\devsy.exe;
$env:Path += ";" + $Env:APPDATA + "\devsy";
[Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
curl -L -o devsy "https://github.com/devsy-org/devsy/releases/latest/download/devsy-linux-amd64" && sudo install -c -m 0755 devsy /usr/local/bin && rm -f devsy
curl -L -o devsy "https://github.com/devsy-org/devsy/releases/latest/download/devsy-linux-arm64" && sudo install -c -m 0755 devsy /usr/local/bin && rm -f devsy