Claude Desktop for Linux Install Methods ?  [Solved]

Message
Author
User avatar
operadude
Posts: 1012
Joined: Tue Nov 05, 2019 12:08 am

Claude Desktop for Linux Install Methods ?

#1 Post by operadude »

I'm interested in trying-out Claude Desktop (installed on system), but see that there is no official Linux version from the Claude website.

I see that some have figured-out how to do this. Such as:

https://github.com/aaddrick/claude-desktop-debian

On that page, MX-Linux is mentioned by name!
Building & Installation (Debian/Ubuntu based)
For Debian-based distributions (Debian, Ubuntu, Linux Mint, MX Linux, etc.), you can build Claude Desktop using the provided build script. Use command-line flags to specify the desired output format (.deb or .AppImage) and whether to clean up intermediate build files.
The procedures in the README file seem straightforward:

Code: Select all

# Clone this repository
git clone https://github.com/aaddrick/claude-desktop-debian.git
cd claude-desktop-debian

# Build the package (Defaults to .deb and cleans build files)
./build.sh

# Example: Build an AppImage and keep intermediate files
./build.sh --build appimage --clean no

# Example: Build a .deb (explicitly) and clean intermediate files (default)
./build.sh --build deb --clean yes
With the explanation:
The script will automatically:

Check for and install required dependencies
Download and extract resources from the Windows version
Create a proper Debian package or AppImage
Perform the build steps based on selected flags

After Building:
If you chose Debian Package (.deb):
The script will output the path to the generated .deb file (e.g., claude-desktop_0.9.1_amd64.deb). Install it using dpkg:

Code: Select all

# Replace VERSION and ARCHITECTURE with the actual values from the filename
sudo dpkg -i ./claude-desktop_VERSION_ARCHITECTURE.deb 

# If you encounter dependency issues, run:
sudo apt --fix-broken install 
Also, for unistalling:
If you installed the .deb package, you can uninstall it using dpkg:

Code: Select all

sudo dpkg -r claude-desktop
And,
If you also want to remove configuration files (including MCP settings), use purge:

Code: Select all

sudo dpkg -P claude-desktop
And:
Configuration Files (Both Formats)
To remove user-specific configuration files (including MCP settings), regardless of installation method:

Code: Select all

rm -rf ~/.config/Claude

Wondering what you (experienced users) think about me trying this out!

I have a separate "Testing" partition that I don't mind breaking or completely destroying :exclamation:

:crossfingers:

User avatar
j2mcgreg
Global Moderator
Posts: 7032
Joined: Tue Oct 23, 2007 12:04 pm

Re: Claude Desktop for Linux Install Methods ?  [Solved]

#2 Post by j2mcgreg »

Wondering what you (experienced users) think about me trying this out!

I have a separate "Testing" partition that I don't mind breaking or completely destroying
It's your machine and you can do what you want with it. I, however, have a separate machine and one that I don't really care about for attempting projects like this. You never know until the attempt is made whether a project will hose your system in ways you couldn't predict.
HP 15; ryzen 3 5300U APU; 500 Gb SSD; 8GB ram
HP 17; ryzen 3 3200; 500 GB SSD; 12 GB ram
Idea Center 3; 12 gen i5; 256 GB ssd;

In Linux, newer isn't always better. The best solution is the one that works.

User avatar
operadude
Posts: 1012
Joined: Tue Nov 05, 2019 12:08 am

Re: Claude Desktop for Linux Install Methods ?

#3 Post by operadude »

j2mcgreg wrote: Thu May 08, 2025 11:11 am
Wondering what you (experienced users) think about me trying this out!

I have a separate "Testing" partition that I don't mind breaking or completely destroying
It's your machine and you can do what you want with it. I, however, have a separate machine and one that I don't really care about for attempting projects like this. You never know until the attempt is made whether a project will hose your system in ways you couldn't predict.
Sound advice :exclamation:

I'll go that route :thumbsup:

User avatar
Stevo
Developer
Posts: 14743
Joined: Fri Dec 15, 2006 7:07 pm

Re: Claude Desktop for Linux Install Methods ?

#4 Post by Stevo »

Or you could try building/installing it on a live USB session or virtual machine. I wonder why they don't have any debs for download, though.

Almost all of the MX packages are built in schroot QEMU machines, that allows us to build for almost any platform, such as ARM chips on a common amd64 machine.

Also, their instructions for installing a deb and then fixing broken dependencies are old and broken themselves! MX ships with right-click and install context menus for debs that use the modern "apt" that do all that automatically. I think nala can also install debs from the command line in a more attractive format.

Hmmm--Claude is an AI desktop assistant. I hope it didn't come up with using "dpkg".
MXPI = MX Package Installer
QSI = Quick System Info from menu
The MX Test repository is mostly backports; not the same as Debian testing

Post Reply

Return to “Software / Configuration”