Skip to content

Install Chrome Linux Mint

Install Chrome Linux Mint

PUBLIC ARCHIVE EDITION

Provenance

  • Provider: ChatGPT
  • Original title: Install Chrome Linux Mint
  • Conversation ID: 6a7f9934-8b10-83e8-b94a-d93df987a4f5
  • Created: 2026-08-14T15:39:58-07:00
  • Updated: 2026-08-14T15:41:19-07:00
  • Models: gpt-5-4-thinking, gpt-5-6-thinking
  • Source archive SHA-256: 0f7aee663dace8d779cc4e6f229b4e22a8386f8075b81801a3c8c2b112e1bdd7
  • Source transcript SHA-256: 3e090ce5022fc2283689fc8f528c8d26682ce68721e5a7b41740d7214d7c3f3a
  • Active-path treatment: active-current-node
  • Alternate messages preserved: 0
  • Attachment state: not-applicable
  • Privacy state: PRIVACY_VERIFIED
  • Publication state: public-archive
  • Record ID: chatgpt:6a7f9934-8b10-83e8-b94a-d93df987a4f5
  • Source member: conversations-002.json
  • Source record SHA-256: 5665043ddcf78a55a1d6447ffd92f1375fc6c5f81c1413f02685cbbce013bf7a
  • Transcript verification status: canonical-verified; privacy-verified; source-order-preserved
  • Editorial changes: privacy-approved local edits preserved
  • Publication/version history: public archive edition v1

Conversation

Darren — 2026-08-14T15:39:57-07:00

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.

ChatGPT — 2026-08-14T15:40:00-07:00 · gpt-5-4-thinking

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:

  1. a step-by-step safer version, or
  2. the command for Chromium instead of Chrome.

Darren — 2026-08-14T15:41:11-07:00

I appreciate that, but I have to run Claude Desktop here, and then Claude in Chrome. So, yeah, requirements.

ChatGPT — 2026-08-14T15:41:12-07:00 · gpt-5-6-thinking

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.