python-pypdf 软件包删除

python-pypdf 软件包删除

13.10 上,我尝试安装软件包python-pypdf。安装过程中出现错误,无法解决。

我试过sudo dpkg --remove python-pypdfsudo dpkg --purge python-pypdfsudo apt-get -f install

我总是得到这样的错误

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)

关于如何修复此问题我有什么想法吗?

答案1

尝试以下命令python-pypdf强制删除,

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

然后通过运行再次安装,

sudo apt-get install python-pypdf

相关内容