apt-get は、「サブプロセス /usr/bin/dpkg がエラーコードを返しました」を提供します。

apt-get は、「サブプロセス /usr/bin/dpkg がエラーコードを返しました」を提供します。

だからDebianコンピュータにCythonをインストールしようとしましたが、インストール中にエラーコードが表示されました。

 Sub-process /usr/bin/dpkg returned an error code (1)

今は純血専門大生として、ただ眠りから起きて、あまり考えずに後で見なければならないという気がしました。しかし、今何かをインストールまたは更新しようとすると、apt-getは以下を提供します。

Errors were encountered while processing:
cython
E: Sub-process /usr/bin/dpkg returned an error code (1)

sudo dpkg --configure -a は以下を提供します。

Setting up cython (0.25.2-1) ...
Traceback (most recent call last):
  File "/usr/bin/pycompile", line 35, in <module>
    from debpython.version import SUPPORTED, debsorted, vrepr, \
  File "/usr/share/python/debpython/version.py", line 24, in <module>
    from ConfigParser import SafeConfigParser
ImportError: No module named 'ConfigParser'
dpkg: error processing package cython (--configure):
  subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 cython

sudo apt-get インストール -f

Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 30 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up cython (0.25.2-1) ...
Traceback (most recent call last):
  File "/usr/bin/pycompile", line 35, in <module>
    from debpython.version import SUPPORTED, debsorted, vrepr, \
  File "/usr/share/python/debpython/version.py", line 24, in <module>
    from ConfigParser import SafeConfigParser
ImportError: No module named 'ConfigParser'
dpkg: error processing package cython (--configure):
  subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
  cython
E: Sub-process /usr/bin/dpkg returned an error code (1)

猫/etc/apt/sources.list

#------------------------------------------------------------------------------#
#                   OFFICIAL DEBIAN REPOS
#------------------------------------------------------------------------------#

###### Debian Main Repos
deb http://deb.debian.org/debian/ stable main contrib
deb-src http://deb.debian.org/debian/ stable main contrib

deb http://deb.debian.org/debian/ stable-updates main contrib
deb-src http://deb.debian.org/debian/ stable-updates main contrib

deb http://deb.debian.org/debian-security stable/updates main
deb-src http://deb.debian.org/debian-security stable/updates main

deb http://ftp.debian.org/debian stretch-backports main
deb-src http://ftp.debian.org/debian stretch-backports main

ベストアンサー1

ブロックを解除するには、パッケージをapt削除する必要がありますcython

sudo apt purge cython

インストールを修復するcythonのはもう少し複雑かもしれません(質問の説明を参照)。

おすすめ記事