Skip to content
Tech News
← Back to articles

Grok Bot for Linux: Unofficial port of the official app (open source)

read original more articles
Why This Matters

The unofficial port of Grok Bot for Linux expands access to this popular AI assistant app beyond Windows and macOS, offering native support without Wine. This development benefits Linux users and broadens the app's reach within the tech industry, fostering greater inclusivity and open-source collaboration.

Key Takeaways

Grok Bot for Linux

Unofficial Ubuntu/Linux build of the Grok Bot desktop app.

Cursor ships Grok Bot for macOS and Windows only. This repo does the same thing the Codex Mac-to-Linux port did: take the official Electron app, put it on a Linux Electron runtime, and replace the Windows-only native addons.

It is not an xAI or Cursor product. Linux is unsupported by them.

What you get

The official Grok Bot UI — bots, the shared computer, sign-in with your Cursor account — running as a native Linux app. No Wine.

Current target: Grok Bot 0.29.0 on Electron 42.1.0 (x86_64).

Ubuntu / Debian

sudo apt install p7zip-full curl unzip build-essential python3 \ libfuse2 fakeroot # Node.js 20+ (Ubuntu 24.04: sudo apt install nodejs npm is too old; # use https://github.com/nvm-sh/nvm or NodeSource) git clone < this-repo > grok-bot-linux cd grok-bot-linux make build sudo dpkg -i dist/grok-bot_ * _amd64.deb sudo apt-get install -f -y # if dpkg reports missing GTK/NSS libs grok-bot

Or skip the package and run the tree directly:

... continue reading