Ubuntu 16.04
software-properties-gtkは機能しません。/usr/bin/pythonフォルダーでエラーが発生しました。私はそれを自分で修理したいと思った。
/ usr/bin /内のフォルダーpython3を削除しました(はい、それが愚かだったことは知っています)
Runsoftware-properties-gtk
の場合、出力は次のとおりです。
bash: /usr/bin/software-properties-gtk: /usr/bin/python3: bad interpreter: No such file or directory
この間違いをどのように修正しますか?
更新:
Sudo apt-get install --reinstall python-minimal
と入力すると、OUTUPTは次のようになります。
Reading package lists... Done Building dependency tree
Reading state information... Done 0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 1 not upgraded. 1 not fully installed or removed. Need to get 28,1 kB of archives. After this operation, 0 B of additional disk space will be used. Get:1 http://pl.archive.ubuntu.com/ubuntu xenial-updates/main AMD64 python-minimal AMD64 2.7.12-1~16.04 [28,1 kB] Fetched 28,1 kB in 0s (77,8 kB/s)
(Reading database ... 248904 files and directories currently installed.) Preparing to unpack .../python-minimal_2.7.12-1~16.04_AMD64.deb ... Unpacking python-minimal (2.7.12-1~16.04) over (2.7.12-1~16.04) ... Processing triggers for man-db (2.7.5-1) ... Setting up python3-minimal (3.5.1-3) ... /var/lib/dpkg/info/python3-minimal.postinst: 5: /var/lib/dpkg/info/python3-minimal.postinst: py3compile: Permission denied dpkg: error processing package python3-minimal (--configure): subprocess installed post-installation script returned error exit status 126 Setting up python-minimal (2.7.12-1~16.04) ... Errors were encountered while processing: python3-minimal E: Sub-process /usr/bin/dpkg returned an error code (1)
ここでは、問題を修正するために実行されたすべてのアクションを要約します。
通常どおりパッケージをインストールします。
Sudo apt-get install --reinstall python3-minimal
Sudo apt-get install --reinstall python-minimal
低レベルでパッケージをインストールします。
Sudo dpkg -i --force-all /var/cache/apt/archives/python-minimal_2.7.12-1~16.04_AMD64.deb
Sudo dpkg -i --force-all /var/cache/apt/archives/python3-minimal_3.5.1-3_AMD64.deb
パッケージをファイルシステムに直接抽出し、通常どおり続行します。
Sudo dpkg -x /var/cache/apt/archives/python-minimal_2.7.12-1~16.04_AMD64.deb /
Sudo dpkg -x /var/cache/apt/archives/python3-minimal_3.5.1-3_AMD64.deb /
Sudo apt-get install -f
Sudo dpkg --configure -a