web-dev-qa-db-ja.com

Python 3は機能していません

最近、ソースからpython 3.5をインストールしましたが、インストールまたはリンク中に何か間違ったことをしたと思います。この後、Ubuntuパッケージのインストールに問題があります。たとえば、software-properties-commonを再インストールした後でも、add-apt-repositoryは機能しません。

$ add-apt-repository 
bash: /usr/bin/add-apt-repository: /usr/bin/python3: bad interpreter: No such file or directory

また、apt-get installでこのエラーが発生します

$ Sudo apt-get install libraw-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
  libraw-dev
0 upgraded, 1 newly installed, 0 to remove and 229 not upgraded.
3 not fully installed or removed.
Need to get 382 kB/391 kB of archives.
After this operation, 1,588 kB of additional disk space will be used.
Get:1 http://us.archive.ubuntu.com/ubuntu/ trusty/main libraw-dev AMD64 0.15.4-1 [382 kB]
Fetched 382 kB in 0s (651 kB/s)    
Selecting previously unselected package libraw-dev:AMD64.
(Reading database ... 295477 files and directories currently installed.)
Preparing to unpack .../libraw-dev_0.15.4-1_AMD64.deb ...
Unpacking libraw-dev:AMD64 (0.15.4-1) ...
Setting up python3.4 (3.4.3-1ubuntu1~14.04.5) ...
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
ImportError: No module named 'encodings'
Aborted
dpkg: error processing package python3.4 (--configure):
 subprocess installed post-installation script returned error exit status 134
Setting up python3-commandnotfound (0.3ubuntu12) ...
/var/lib/dpkg/info/python3-commandnotfound.postinst: 6: /var/lib/dpkg/info/python3-commandnotfound.postinst: py3compile: not found
dpkg: error processing package python3-commandnotfound (--configure):
 subprocess installed post-installation script returned error exit status 127
dpkg: error processing package software-properties-common (--configure):
 package is in a very bad inconsistent state; you should
 reinstall it before attempting configuration
Setting up libraw-dev:AMD64 (0.15.4-1) ...
Errors were encountered while processing:
 python3.4
 python3-commandnotfound
 software-properties-common
E: Sub-process /usr/bin/dpkg returned an error code (1)

また、PPAを追加しようとすると、次のエラーが発生します

$ Sudo add-apt-repository ppa:dhor/myway
Sudo: unable to execute /usr/bin/add-apt-repository: No such file or directory

何が起こっているのでしょうか?

1
user109352
  1. 最初に、Python 3のコアを復元する必要があります:

    Sudo apt install -f --reinstall python3 python3.4 python3-minimal python3.4-minimal libpython3.4-minimal
    

    Python 3に応じてパッケージが半分インストールされているためにこれが機能しない場合は、手動でダウンロードしてインストールします。

    cd /tmp
    apt-get download python3 python3.4 python3-minimal python3.4-minimal libpython3.4-minimal
    Sudo dpkg -i *python3*.deb
    Sudo apt install -f
    
  2. debsumsパッケージをインストールし、 package sanity check を実行して残りのパッケージの整合性を確認し、必要に応じて再インストールします。

1
David Foerster

Ubuntuには、システムユーティリティが機能するために依存するPythonの独自のインストールが付属しています。これらのユーティリティは、これらのシステムインストールを指すpythonpython2、およびpython3に依存しています。残念ながら、ソースからPythonをビルド/インストールすると、標準のmake installは新しいpython/python2(Python 2.xの場合)またはpython3(Python 3.xの場合)バイナリ。システムPythonのインストールをシャドーイングして問題を引き起こす可能性があります。

システムを修正したら(Davidの答えがうまくいけば)、ソースからコンパイルされたPythonをmake altinstallで(再)インストールし、python3およびバージョン固有のpython3.5としてのみインタープリターをインストールします。これは、システムPythonに干渉することなく独自のPythonをインストールする安全な方法です。システムユーティリティが依存するコマンドをシャドウしないためです。

0
jcgoble3