-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
This guide covers the installation of the Compose for Desktop Wizard desktop client on all supported platforms.
- Java: 17 or later
The desktop client requires Java 17 or later. Check your Java version:
java -version
If Java is not installed or version is below 17, download from Oracle.
Ubuntu/Debian:
sudo apt update
sudo apt install openjdk-17-jre
Windows: Download installer from Oracle and follow the setup wizard.
Download the .deb
file from the release page:
# Download and install
wget https://github.com/zahid4kh/compose-for-desktop/releases/download/1.0.1/composefordesktop_1.0.1_all.deb
sudo dpkg -i composefordesktop_1.0.1_all.deb
# Fix dependencies if needed
sudo apt install -f
Features of DEB installation:
- System-wide installation
- Desktop menu integration
- Application launcher icon
- Automatic file associations
- Clean uninstall via package manager
To launch after installation:
composefordesktop
# Or from your applications menu
To uninstall:
sudo apt remove composefordesktop
For other Linux distributions or manual installation:
# Download JAR file
wget https://github.com/zahid4kh/compose-for-desktop/releases/download/1.0.1/composefordesktop-1.0.1.jar
# Run
java -jar composefordesktop-1.0.1.jar
- Download
composefordesktop-1.0.1.jar
from releases - Open Command Prompt or PowerShell
- Navigate to download location
- Run the application:
java -jar composefordesktop-1.0.1.jar
- Download
composefordesktop-1.0.1.jar
from releases - Navigate to download location
- Run the application:
java -jar composefordesktop-1.0.1.jar
Error: java: command not found
or Java not installed
Solution: Install Java 17+ and ensure it's in your system PATH:
# Check Java installation
which java
java -version
# On Linux set JAVA_HOME
export JAVA_HOME=/usr/lib/jvm/java-17-openjdk
export PATH=$JAVA_HOME/bin:$PATH
To update to a newer version:
-
DEB Package: Download and install new
.deb
file (will upgrade existing installation) - JAR File: Download a new JAR file and replace the old one
- Check for updates: Visit the release page for the latest version
sudo apt remove composefordesktop
Simply delete the downloaded JAR file and any created shortcuts.
Need help? Check the Troubleshooting guide or create an issue on GitHub.
π¦ Generator | π Wiki Home | π» Repository | π Report Issue
Β© 2025 Compose for Desktop Wizard | Licensed under Apache 2.0 | Made with β€οΈ for the Kotlin/Desktop Developer Community