温馨提示×

debian liboffice在哪下载

小樊
41
2026-09-11 03:59:37
栏目: 智能运维

在 Debian 系统中,LibreOffice(你写的 liboffice 应该是 LibreOffice) 通常不需要去网页下载,推荐用系统自带的包管理器安装,简单又安全。

方法一:用 apt 安装(最推荐,Debian 官方源)

sudo apt update
sudo apt install libreoffice

如果只想装核心组件(更小):

sudo apt install libreoffice-core libreoffice-writer libreoffice-calc libreoffice-impress

方法二:Debian 官网

  • Debian 软件包查询:https://packages.debian.org/
  • 搜索 libreoffice 即可看到对应版本

方法三:LibreOffice 官网(不推荐新手)

  • https://www.libreoffice.org/download/
  • 下载的是 .deb.tar.gz,需手动安装,容易和系统包冲突

小提示

  • Debian 稳定版里的 LibreOffice 版本可能较旧,但很稳定
  • 想要新版本,可以用 Debian Backports 或 Flatpak

如果你告诉我 Debian 版本(如 11 / 12)和桌面环境,我可以给你更精确的命令。

0