web-dev-qa-db-ja.com

Eを返すApport aptget:サブプロセス/ usr / bin / dpkgがエラーコードを返しました(1)

このような多くの質問があるようですが、私の問題を解決したものはありません。 libprotobuf-devおよびprotobuf-compilerパッケージをインストールしようとしました。しかし、それをインストールできませんでした。このエラーが発生しました

Reading package lists... Done
Building dependency tree       
Reading state information... Done
libprotobuf-dev is already the newest version (2.6.1-1.3).
protobuf-compiler is already the newest version (2.6.1-1.3).
0 upgraded, 0 newly installed, 0 to remove and 7 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up apport (2.20.1-0ubuntu2.14) ...
/var/lib/dpkg/info/apport.postinst: 13: /var/lib/dpkg/info/apport.postinst: pycompile: not found
dpkg: error processing package apport (--configure):
 subprocess installed post-installation script returned error exit status 127
Errors were encountered while processing:
 apport
E: Sub-process /usr/bin/dpkg returned an error code (1)

解決策の1つは、apport関連のすべてのファイルを/var/lib/dpkg/infoから/tmpに移動するように指示しましたが、動作しませんでしたが、同じエラーが発生しました。このエラーの背後に数時間を費やしました。ソートできませんでした。可能な解決策はありますか?

1
Arvind kr

あなたはpycompileを再インストールする必要があります、これを試してください

Sudo apt purge apport # purge apport
Sudo apt reinstall python-minimal # reinstall python-minimal
Sudo apt install apport # install apport
Sudo dpkg --configure -a && Sudo apt-get install -f # resume last APT session

apportをパージすると、apportのクリーンインストールを開始し、apportに必要なpython-minimal installs pycompileを再インストールできます。

2
Camden