Conversation provenance
Source: ChatGPT data export · Conversation ID: 6a7f9934-8b10-83e8-b94a-d93df987a4f5
Created: 2026-08-14T15:39:58-07:00 · Part 1 of 1
So, I'm at a different location, a new machine. It's got Linux Mint on it. It's, I think, an i5 with an okay set of memory, and it should do fine. What I'm looking to do is get the terminal command to install Chrome.
On Linux Mint, the clean way to install Google Chrome from the terminal is:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && sudo apt install ./google-chrome-stable_current_amd64.deb
If wget is not installed, use:
sudo apt update && sudo apt install wget -y
Then run the Chrome install command again.
If you want, I can also give you:
- a step-by-step safer version, or
- the command for Chromium instead of Chrome.
I appreciate that, but I have to run Claude Desktop here, and then Claude in Chrome. So, yeah, requirements.
Yep — in that case Chrome proper, not Chromium, makes sense. Claude’s web experience can care about the exact browser environment, extensions, sign-in behavior, and whatever Anthropic is currently expecting.
And on Mint, that .deb install is the right route anyway; it also adds Google’s repository, so Chrome should update through the normal package manager afterward.
So your one-liner is still:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && sudo apt install ./google-chrome-stable_current_amd64.deb
Then launch it with:
google-chrome
That machine should be perfectly adequate for Chrome + Claude unless the memory is unusually low.
