web-dev-qa-db-ja.com

再インストールを試行した後、壊れたpython依存関係

Ubuntu 18.04システムにpythonをいくつかインストールし、必要なものをすべてアンインストールして、python3.6を適切に再インストールしようとしました。

したがって、whereis pythonの下にリストされたすべてのフォルダーを削除しました。おそらくそれは悪い考えでした。

Sudo apt-get install python3.6を実行すると、戻ります

Reading package lists... Done
Building dependency tree       
Reading state information... Done
python3.6 is already the newest version (3.6.5-3).
0 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.
4 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 python3.6-minimal (3.6.5-3) ...
Could not find platform independent libraries <prefix>
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
Fatal Python error: Py_Initialize: Unable to get the locale encoding
ModuleNotFoundError: No module named 'encodings'

Current thread 0x00007f814f83c740 (most recent call first):
Aborted
dpkg: error processing package python3.6-minimal (--configure):
 installed python3.6-minimal package post-installation script subprocess returned error exit status 134
Setting up python-minimal (2.7.15~rc1-1) ...
/var/lib/dpkg/info/python-minimal.postinst: 4: /var/lib/dpkg/info/python-minimal.postinst: python2.7: not found
dpkg: error processing package python-minimal (--configure):
 installed python-minimal package post-installation script subprocess returned error exit status 127
dpkg: dependency problems prevent configuration of python3.6:
 python3.6 depends on python3.6-minimal (= 3.6.5-3); however:
  Package python3.6-minimal is not configured yet.

dpkg: error processing package python3.6 (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of python3.6-dev:
 python3.6-dev depends on python3.6 (= 3.6.5-3); however:
  Package python3.6 is not configured yet.

dpkg: error processing package python3.6-dev (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 python3.6-minimal
 python-minimal
 python3.6
 python3.6-dev
E: Sub-process /usr/bin/dpkg returned an error code (1)

その後、Sudo apt-get install -f --reinstall python3.6-minimalを使用して最小パッケージを更新しようとしましたが、

Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 4 not upgraded.
4 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
E: Internal Error, No file name for python3.6-minimal:AMD64

私は実際には経験豊富なLinuxユーザーではないので、ここで立ち往生しています。 pythonインストールを修正する方法を誰かが知っていますか?

1
Humpawumpa

dpkg:エラー処理パッケージpython3.6-minimal(--configure):
dpkg:パッケージpython3.6の処理エラー(--configure):
dpkg:パッケージpython3.6-devの処理エラー(--configure):

再構成が必要なdpkgパッケージエラーが3つあります。これを行うための1つのこと

Sudo dpkg --configure -a

4つのパッケージがアップグレードされていないことがわかります

Reading state information... Done
0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 4 not upgraded.
4 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.

確認すべてのパッケージが更新およびアップグレードされているため、実行

Sudo apt-get update && Sudo apt-get upgrade && Sudo apt-get autoremove

出力ログが言った場合

Errors were encountered while processing:  
python3.6-minimal  
python-minimal  
python3.6  
python3.6-dev

Sudo apt-get install --fix-brokenと入力してみてください

そのパッケージの処理中にエラーが引き続き発生する場合は、pythonをすべてパージして削除し、再インストールしてください。

Sudo apt-get purge python* && Sudo apt-get autoclean && Sudo apt-get install python*

お役に立てれば。