ソースからPython 3.6.3をインストールした後、「lsb_release」という名前のモジュールはありません


10

プラットフォーム:ubuntu 17.04サーバー

ubuntu 17.04サーバーのインストールには、python 2.7とpython 3.5が含まれています。Python 3.6.3をソースから手動でインストールしました。ただし、lsb_release -a失敗しました:

# lsb_release -a
Traceback (most recent call last):
  File "/usr/bin/lsb_release", line 25, in <module>
    import lsb_release
ModuleNotFoundError: No module named 'lsb_release'

しかし、私は、ファイルの最初の行を変更した場合lsb_releaseから

#!/usr/bin/python3 -Es

#!/usr/bin/python3.5 -Es

それは再び動作します。

# lsb_release -a
LSB Version:    core-9.20160110ubuntu5-amd64:core-9.20160110ubuntu5-noarch:security-9.20160110ubuntu5-amd64:security-9.20160110ubuntu5-noarch
Distributor ID: Ubuntu
Description:    Ubuntu 17.04
Release:    17.04
Codename:   zesty

モジュール検索パスは次のとおりです。

# python3.5
Python 3.5.3 (default, Sep 14 2017, 22:58:41) 
[GCC 6.3.0 20170406] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path
['', '/usr/lib/python35.zip', '/usr/lib/python3.5', '/usr/lib/python3.5/plat-x86_64-linux-gnu', '/usr/lib/python3.5/lib-dynload', '/usr/local/lib/python3.5/dist-packages', '/usr/lib/python3/dist-packages']
>>> import lsb_release
>>> exit()

# python3
Python 3.6.3 (default, Oct 14 2017, 20:35:42) 
[GCC 6.3.0 20170406] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path
['', '/usr/local/lib/python36.zip', '/usr/local/lib/python3.6', '/usr/local/lib/python3.6/lib-dynload', '/root/.local/lib/python3.6/site-packages', '/usr/local/lib/python3.6/site-packages']
>>> import lsb_release
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'lsb_release'
>>> exit()

誰かがそれを修正する方法を知っていますか?


1
おそらくrm / usr / local / bin / python3を使用し、何かに3.6を使用したい場合はpython3.6を明示的に使用する必要があると思います。
dobey

なぜPython 3.6をソースからインストールするのですか?
edwinksl 2017年

Ubuntuシステムのデフォルトとして別のPythonインストールを設定しているようです。これは、モジュールのインストールパスが異なるため、多くの問題を引き起こすことがわかっています。readlink -f /usr/bin/python3and の出力は何/usr/bin/python3 --versionですか?
David Foerster、2017年

回答:


23

解決:

sudo ln -s /usr/share/pyshared/lsb_release.py /usr/local/lib/python3.6/site-packages/lsb_release.py

説明:

で見ることができます /usr/bin/lsb_release

#!/usr/bin/python3 -Es

# lsb_release command for Debian
# (C) 2005-10 Chris Lawrence <lawrencc@debian.org>
#    This package is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation; version 2 dated June, 1991.
#    This package is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#    You should have received a copy of the GNU General Public License
#    along with this package; if not, write to the Free Software
#    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
#    02110-1301 USA
from optparse import OptionParser
import sys
import os
import re

import lsb_release

重要なステップはimport lsb_releaseですが、問題はPython 3.6このモジュールがないことです。

したがって、python3からpython3.5にオーバーライドしてpython3.6いる必要があります。それがあなたlsb_releaseが壊れている理由です。

それを確認するには、次のように表示しpython3.6ます。

  ~ python3.6 
Python 3.6.4 (default, Feb  6 2018, 16:57:12) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import lsb_release
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'lsb_release'

次にpython3.5

  ~ python3.5
Python 3.5.2 (default, Nov 23 2017, 16:37:01) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import lsb_release
>>> lsb_release.__file__
'/usr/lib/python3/dist-packages/lsb_release.py'

このファイルはどこにありますか:

  ~ ll /usr/lib/python3/dist-packages/lsb_release.py
lrwxrwxrwx 1 root root 38 Jul   7  2016 /usr/lib/python3/dist-packages/lsb_release.py -> ../../../share/pyshared/lsb_release.py

したがって、このモジュールlsb_releaseはにpython3.5は存在しpython3.6ますが、には存在しません。そして最終的にそれを見つけます!

元のlsb_release.pyファイルへのリンクを追加して修正しましょう!

わたしにはできる!

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.