Sintomi:
L'utilizzo di uno strumento apt può causare il seguente errore:
Traceback (most recent call last): File "/usr/bin/lsb_release", line 28, inimport lsb_release ImportError: No module named 'lsb_release' Traceback (most recent call last): File "/usr/bin/lsb_release", line 28, in import lsb_release ImportError: No module named 'lsb_release'
Soluzione
La causa più probabile di questo messaggio di errore può essere in una versione Python inappropriata in uso. Il tuo sistema ha più versioni di Python installate. La soluzione è utilizzare update-alternatives
per passare a una versione python predefinita o sovrascrivere implicitamente /usr/bin/lsb_release
interprete dello script es.:
FROM: #! /usr/bin/python -Es TO: #! /usr/bin/python2.7 -Es