This guide covers Linux-specific installation options and building from source.
Flatpak packages are available for Linux users who prefer sandboxed applications.
See the main README for Flatpak download links in the Beta Release section.
To build the Flatpak package yourself, you need additional dependencies:
# Fedora/RHEL
sudo dnf install flatpak-builder
# Ubuntu/Debian
sudo apt install flatpak-builder
# Install required Flatpak runtimes
flatpak install flathub org.freedesktop.Platform//25.08 org.freedesktop.Sdk//25.08
flatpak install flathub org.electronjs.Electron2.BaseApp//25.08
# Build the Flatpak
cd apps/frontend
npm run package:flatpakThe Flatpak will be created in apps/frontend/dist/.
After building, install the Flatpak locally:
flatpak install --user apps/frontend/dist/Auto-Claude-*.flatpakflatpak run com.autoclaude.AutoClaudeAppImage files are portable and don't require installation:
# Make executable
chmod +x Auto-Claude-*-linux-x86_64.AppImage
# Run
./Auto-Claude-*-linux-x86_64.AppImageFor Ubuntu/Debian systems:
sudo dpkg -i Auto-Claude-*-linux-amd64.debIf you encounter runtime issues with Flatpak:
# Update runtimes
flatpak update
# Check for missing runtimes
flatpak list --runtimeIf the AppImage doesn't start:
# Check for missing libraries
ldd ./Auto-Claude-*-linux-x86_64.AppImage
# Try running with debug output
./Auto-Claude-*-linux-x86_64.AppImage --verbose