尝试安装 python-pypdf 时没有安装候选错误

尝试安装 python-pypdf 时没有安装候选错误

我需要安装python-pypdf。因此我尝试使用以下命令安装它:

sudo apt-get install python-pypdf

但是我收到此错误:

E: Package 'python-pypdf' has no installation candidate

为什么?

答案1

在 Ubuntu 14.04、16.04 和 16.10 中打开终端并输入:

sudo apt-get install python-pypdf  

上游 Debian 存储库在最新稳定版 Debian 中不再包含 python-pypdf 软件包。在 Ubuntu 17.04(及更高版本)中,打开终端并输入:

sudo apt install python-pypdf2 # Pure-Python library built as a PDF toolkit (Python 2) 

答案2

好的,从您的评论来看,您没有使用 Ubuntu,而是使用 Parrot Security OS。

下面的命令显示 python-pypdf 在我的 Ubuntu 16.04 中的位置

$ apt show python-pypdf
Package: python-pypdf
Version: 1:1.13-3
Priority: optional
Section: universe/python

对于 Ubuntu,以下命令可以添加/启用一些额外的存储库,其中包含社区维护的免费软件,包括 python-pypdf

$ sudo apt-add-repository universe
$ sudo apt update

我认为你应该在鹦鹉社区

答案3

如果你使用的是 Python3,则可以使用pip或直接安装它。 命令如下: pip3

pip install pyPdf  # use pip3 with Python3

相关内容