1

I have Ubuntu 16.04 and my gnome-terminal does not work (I cannot do "run from terminal"). I have xterm, and when I try to run:

gnome-terminal

I get:

Traceback:
   File "/usr/bin/gnome-terminal", line 9, in <module>
     from gi.repository import Glib, Gio
ModlueNotFoundError: No module named 'gi'

I tried to reinstall:

sudo apt update
sudo apt install gnome-terminal

but it did not help.

What can I do?

1 Answers1

3

Install the python gi module since it seems to be missing.

sudo apt install python-gi python3-gi
Parto
  • 15,325
  • 24
  • 86
  • 117