私はUbuntu 14.04を実行しており、最近apt-getに問題が発生し始めました。パッケージをインストールまたは削除できません(以下のエラー)。パッケージの再インストールも試してみましたが、debファイルも削除してみましたが、まだ同じエラーが発生します。
The following extra packages will be installed:
python3-software-properties software-properties-common
software-properties-gtk
The following packages will be upgraded:
python3-software-properties software-properties-common
software-properties-gtk
3 upgraded, 0 newly installed, 0 to remove and 412 not upgraded.
108 not fully installed or removed.
Need to get 0 B/126 kB of archives.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
WARNING: The following packages cannot be authenticated!
dh-python software-properties-common software-properties-gtk
python3-software-properties
Install these packages without verification? [y/N] y
(Reading database ... 305261 files and directories currently installed.)
Preparing to unpack .../software-properties-common_0.92.37.7_all.deb ...
/var/lib/dpkg/info/software-properties-common.prerm: 6: /var/lib/dpkg/info/software-properties-common.prerm: py3clean: not found
dpkg: warning: subprocess old pre-removal script returned error exit status 127
dpkg: trying script from the new package instead ...
/var/lib/dpkg/tmp.ci/prerm: 6: /var/lib/dpkg/tmp.ci/prerm: py3clean: not found
dpkg: error processing archive /var/cache/apt/archives/software-properties-common_0.92.37.7_all.deb (--unpack):
subprocess new pre-removal script returned error exit status 127
/var/lib/dpkg/info/software-properties-common.postinst: 6: /var/lib/dpkg/info/software-properties-common.postinst: py3compile: not found
dpkg: error while cleaning up:
subprocess installed post-installation script returned error exit status 127
Preparing to unpack .../software-properties-gtk_0.92.37.7_all.deb ...
/var/lib/dpkg/info/software-properties-gtk.prerm: 6: /var/lib/dpkg/info/software-properties-gtk.prerm: py3clean: not found
dpkg: warning: subprocess old pre-removal script returned error exit status 127
dpkg: trying script from the new package instead ...
/var/lib/dpkg/tmp.ci/prerm: 6: /var/lib/dpkg/tmp.ci/prerm: py3clean: not found
dpkg: error processing archive /var/cache/apt/archives/software-properties-gtk_0.92.37.7_all.deb (--unpack):
subprocess new pre-removal script returned error exit status 127
/var/lib/dpkg/info/software-properties-gtk.postinst: 6: /var/lib/dpkg/info/software-properties-gtk.postinst: py3compile: not found
dpkg: error while cleaning up:
subprocess installed post-installation script returned error exit status 127
Preparing to unpack .../python3-software-properties_0.92.37.7_all.deb ...
/var/lib/dpkg/info/python3-software-properties.prerm: 6: /var/lib/dpkg/info/python3-software-properties.prerm: py3clean: not found
dpkg: warning: subprocess old pre-removal script returned error exit status 127
dpkg: trying script from the new package instead ...
/var/lib/dpkg/tmp.ci/prerm: 6: /var/lib/dpkg/tmp.ci/prerm: py3clean: not found
dpkg: error processing archive /var/cache/apt/archives/python3-software-properties_0.92.37.7_all.deb (--unpack):
subprocess new pre-removal script returned error exit status 127
/var/lib/dpkg/info/python3-software-properties.postinst: 6: /var/lib/dpkg/info/python3-software-properties.postinst: py3compile: not found
dpkg: error while cleaning up:
subprocess installed post-installation script returned error exit status 127
Errors were encountered while processing:
/var/cache/apt/archives/software-properties-common_0.92.37.7_all.deb
/var/cache/apt/archives/software-properties-gtk_0.92.37.7_all.deb
/var/cache/apt/archives/python3-software-properties_0.92.37.7_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
答え1
py3compile: 見つかりません
このpy3compile
コマンドはパッケージの一部python3-minimal
であり、破損しているようです。
この問題を解決するには、以下を試してください。
以下を使用して、依存関係が破損したシステムを修正します。
sudo apt-get -f install
以下では、解凍されたが構成されていないすべてのパッケージを再構成します。
sudo dpkg --configure -a
上記の方法がうまくいかない場合は、次の方法
python3-minimal
でパッケージを再インストールしてみてください。sudo apt install -f --reinstall python3-minimal
または以下を実行してください。
apt-get download python3-minimal sudo dpkg -i *python3*.deb sudo apt install -f
またはダウンロード
.pkg
kernel.orgのファイル以下を介してファイルからインストールします。sudo dpkg -i python3-minimal_*.deb
py3compile
その後、コマンドがpy3clean
実行可能であり、PATH
変数からアクセスできることを確認してください。