Nenhum erro de candidato de instalação ao tentar instalar o python-pypdf

1

Eu preciso instalar python-pypdf . Então eu tentei instalar com:

sudo apt-get install python-pypdf

Mas recebo este erro:

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

Por quê?

    
por Молюска Моллюсков 01.07.2017 / 09:36

2 respostas

0

No Ubuntu 14.04, 16.04 e 16.10, abra o terminal e digite:

sudo apt-get install python-pypdf  

Os repositórios Debian acima não possuem mais o pacote python-pypdf na última versão estável do Debian. No Ubuntu 17.04 (e posterior), abra o terminal e digite:

sudo apt install python-pypdf2 # Pure-Python library built as a PDF toolkit (Python 2) 
    
por karel 01.07.2017 / 10:48
0

Ok, pelos seus comentários, você não está usando o Ubuntu, mas o Parrot Security OS.

Abaixo, o comando mostra onde está python-pypdf no meu Ubuntu 16.04

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

Para o Ubuntu, o comando abaixo pode adicionar / ativar algum repositório adicional que tem comunidade mantida software livre, incluindo python-pypdf

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

Acho que você deve pesquisar / fazer essa pergunta na Comunidade Parrot .

    
por alfred 01.07.2017 / 10:07