-
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 -versionIf Java is not installed or version is below 17, download from Oracle.
Ubuntu/Debian:
sudo apt update
sudo apt install openjdk-17-jreWindows: 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 -fFeatures 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 menuTo uninstall:
sudo apt remove composefordesktopFor 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.jarfrom 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.jarfrom releases - Navigate to download location
- Run the application:
java -jar composefordesktop-1.0.1.jarError: 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:$PATHTo update to a newer version:
-
DEB Package: Download and install new
.debfile (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 composefordesktopSimply 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