如何在 Ubuntu 14.04 上安装 PDFedit?

mig*_*s85 13 pdf conversion 14.04

我需要将 PDF 文档(表格)转换为 .xls 格式。所以我读到我需要用pdfedit将其转换为文本。

我需要在 Ubuntu 14.04 上安装 PDFedit 的步骤。

在某些论坛中有一些解决方法。我不是专家,所以我问是否有人可以公开安装完整工作的 PDFedit 的步骤。

谢谢。

L. *_*mes 21

您可以在以下位置找到适用于 Linux 的 pdfedit:

http://sharadchhetri.com/2013/12/29/install-pdfedit-for-editing-pdf-file-in-ubuntu/

当前的 Ubuntu 放弃了对 libqt3-mt 库的支持。目前,您可以通过编辑 /etc/apt/sources.list 并添加以下行来添加它:

# libqt3-mnt
deb http://old-releases.ubuntu.com/ubuntu lucid main
Run Code Online (Sandbox Code Playgroud)

然后运行:

$ sudo apt-get update
$ sudo apt-get install libmng1 libqt3-mt
Run Code Online (Sandbox Code Playgroud)

现在您可以安装 pdfeditor(选择 32b 或 64 位):

安装 pdfedit (32bit)

$ wget http://us.archive.ubuntu.com/ubuntu/pool/universe/p/pdfedit/pdfedit_0.4.5-2_i386.deb     
$ sudo dpkg -i pdfedit_0.4.5-2_i386.deb
Run Code Online (Sandbox Code Playgroud)

64位版本:

下载并安装pdfedit

$ wget http://us.archive.ubuntu.com/ubuntu/pool/universe/p/pdfedit/pdfedit_0.4.5-2_amd64.deb
$ sudo dpkg -i pdfedit_0.4.5-2_amd64.deb
Run Code Online (Sandbox Code Playgroud)