Plattform: Ubuntu 17.04 Server
Die Ubuntu 17.04-Serverinstallation umfasst Python 2.7 und Python 3.5. Ich habe Python 3.6.3 manuell von der Quelle installiert. Allerdings lsb_release -a
schlug fehl:
# 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'
Aber wenn ich die erste Zeile der Datei lsb_release
von ändere
#!/usr/bin/python3 -Es
zu
#!/usr/bin/python3.5 -Es
es funktioniert wieder
# 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
Hier sind die Modul-Suchpfade:
# 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()
Weiß jemand, wie man es behebt?
readlink -f /usr/bin/python3
und/usr/bin/python3 --version
?Antworten:
Lösung:
Erklären:
Wir können in sehen
/usr/bin/lsb_release
Der Schlüsselschritt ist
import lsb_release
, aber das Problem istPython 3.6
, dass dieses Modul nicht vorhanden ist.So müssen Sie overrided haben
python3
vonpython3.5
zupython3.6
. Deshalb ist deinlsb_release
kaputt.Um dies zu überprüfen, sehen wir in
python3.6
:dann in
python3.5
:Wo ist diese Datei:
Dieses Modul
lsb_release
existiert also in,python3.5
aber nicht inpython3.6
. Und wir finden es schließlich!Jetzt können wir das Problem beheben, indem wir einen Link zur Originaldatei hinzufügen
lsb_release.py
!Für mich geht das!
quelle