﻿---
title: "Linux 桌面应用用发行版包，不要指望 Computer Use"
summary: "预览。Ubuntu 24.04/26.04、Debian 13、Fedora 43/44，x64 或 ARM64。Computer Use 还没有。Wayland 先走 XWayland。"
category: config
level: starter
surfaces: [app]
tags: ["Linux", "桌面", "安装"]
canonical: /tips/linux-chatgpt-deb-rpm/
---

# Linux 桌面应用用发行版包，不要指望 Computer Use

预览。Ubuntu 24.04/26.04、Debian 13、Fedora 43/44，x64 或 ARM64。Computer Use 还没有。Wayland 先走 XWayland。

先看架构：

```bash
uname -m    # x86_64 → amd64 / x86_64 包；aarch64 → arm64 / aarch64 包
```

Ubuntu / Debian：

```bash
cd ~/Downloads
sudo apt install ./chatgpt_amd64.deb    # ARM64 换成 chatgpt_arm64.deb
chatgpt
sudo apt update && sudo apt install --only-upgrade chatgpt
```

Fedora：

```bash
cd ~/Downloads
sudo dnf install ./chatgpt.x86_64.rpm    # ARM64 换成 chatgpt.aarch64.rpm
sudo dnf upgrade --refresh chatgpt
```

安装脚本会加上 OpenAI 签名源。从应用菜单或 `chatgpt` 启动后用 ChatGPT 账号登录。

Computer Use 目前只在 macOS / Windows。Linux 预览没有。原生 Wayland 仍实验：先彻底退出，再 `chatgpt --ozone-platform=wayland`。浮动窗、焦点和快捷键可能不完整。CLI 的 `/app` 把 TUI 接到桌面，文档仍写 macOS / Windows。

## 来源

- [OpenAI · ChatGPT desktop app for Linux](https://learn.chatgpt.com/docs/linux/linux-app)
