python-pypdf

0

No 13.10, eu tentei instalar o pacote python-pypdf . Eu recebi um erro durante a instalação e não consigo usá-lo.

Eu tentei sudo dpkg --remove python-pypdf e sudo dpkg --purge python-pypdf e sudo apt-get -f install

Eu sempre recebo um erro como

Paramétrage de python-pypdf (1.13-1) ...
Traceback (most recent call last):
  File "/usr/sbin/update-python-modules", line 449, in <module>
    shutil.rmtree(dir)
  File "/usr/lib/python2.7/shutil.py", line 232, in rmtree
    onerror(os.path.islink, path, sys.exc_info())
  File "/usr/lib/python2.7/shutil.py", line 230, in rmtree
    raise OSError("Cannot call rmtree on a symbolic link")
OSError: Cannot call rmtree on a symbolic link
dpkg: erreur de traitement de python-pypdf (--configure) :
 le sous-processus script post-installation installé a retourné une erreur de sortie d'état 1
Des erreurs ont été rencontrées pendant l'exécution :
 python-pypdf
E: Sub-process /usr/bin/dpkg returned an error code (1)

Alguma ideia de como posso corrigir isso?

    
por user246833 05.03.2014 / 09:02

1 resposta

1

Experimente o comando abaixo para remover python-pypdf forcely,

sudo dpkg -P --force-remove-reinstreq python-pypdf

Em seguida, instale-o novamente executando

sudo apt-get install python-pypdf
    
por Avinash Raj 05.03.2014 / 09:26