如何解决安装 LibreOffice 3.6.4 的包冲突?

Jos*_*nto 5 dpkg 32-bit libreoffice 12.10

LibreOffice 的最新版本是 3.6.4,但软件中心仅提供 3.6.2。我已经安装了http://www.libreoffice.org/download/?type=deb-x86&lang=en-GB&version=3.6.4 上可用的文件(是的,我运行的是 32 位 12.10)并完成了安装说明随附的自述文件最多:

cd desktop-integration
sudo dpkg -i *.deb
Run Code Online (Sandbox Code Playgroud)

此时我收到错误:

dpkg: regarding libreoffice3.6-debian-menus_3.6.4-3_all.deb containing libreoffice-debian-menus:
 libreoffice-debian-menus conflicts with libreoffice-bundled
  libreoffice-core provides libreoffice-bundled and is present and installed.

dpkg: error processing libreoffice3.6-debian-menus_3.6.4-3_all.deb (--install):
 conflicting packages - not installing libreoffice-debian-menus
Errors were encountered while processing:
 libreoffice3.6-debian-menus_3.6.4-3_all.deb
Run Code Online (Sandbox Code Playgroud)

之后我执行了:

sudo apt-get remove libreoffice-bundled
Run Code Online (Sandbox Code Playgroud)

并重新启动最后一个命令:

sudo dpkg -i *.deb
Run Code Online (Sandbox Code Playgroud)

这次也失败了。

Ger*_*ger 4

很可能仍然存在旧 libreoffice 安装的痕迹,您可以使用以下命令删除它们

sudo apt-get purge 'libreoffice*'
Run Code Online (Sandbox Code Playgroud)

然后再次尝试按照指南进行操作。