Please ignore secret bonuses. Secret tests do NOT award bonus. Max hw grade is 30+2 bonus efficiency

Do you need help?

Notice Board

No module named 'click'

G
Giando (3580 points)
5 9 15
in Es2 by (3.6k points)
closed by

Quando lancio questo comando, dal Terminale di Ubuntu 64 bit: python3 simulatore.py simulate --pista monza --players program02

Mi compare questo errore:

Traceback (most recent call last):
  File "simulatore.py", line 353, in <module>
    import click
ImportError: No module named 'click'

Ho appena scaricato PyQt5 dal Terminale col comando: sudo apt-get install python3-pyqt5.

Non utilizzo Anaconda.

Grazie mille a chiunque mi aiuti.

435 views
closed with the note: answered

1 Answer

Best answer
by (9.9k points)
selected by

Anche io non utilizzo Anaconda, perciò ho installato il modulo in questione tramite pip:

pip3 install click

Se non hai pip puoi installarlo con il package manager di Ubuntu:

sudo apt install pip3

G
Giando (3580 points)
5 9 15
by (3.6k points)
Grazie mille!