Ubuntu 16.04 -ImportError: Nenhum módulo chamado 'UbuntuDrivers'

5

Eu estava tendo alguns problemas para abrir propriedades de software e estava fechando; não conseguia nem abrir. Eu tentei abri-lo no terminal e estou recebendo este erro:

/usr/lib/python3/dist-packages/softwareproperties/gtk/SoftwarePropertiesGtk.py:40: PyGIWarning: Gdk was imported without specifying a version first. Use gi.require_version('Gdk', '3.0') before import to ensure that the right version gets loaded.  from gi.repository import GObject, Gdk, Gtk, Gio, GLib
/usr/lib/python3/dist-packages/softwareproperties/gtk/SoftwarePropertiesGtk.py:40: PyGIWarning: Gtk was imported without specifying a version first. Use gi.require_version('Gtk', '3.0') before import to ensure that the right version gets loaded.
  from gi.repository import GObject, Gdk, Gtk, Gio, GLib
Traceback (most recent call last):
  File "/usr/bin/software-properties-gtk", line 37, in <module>
    from softwareproperties.gtk.SoftwarePropertiesGtk import SoftwarePropertiesGtk
  File "/usr/lib/python3/dist-packages/softwareproperties/gtk/SoftwarePropertiesGtk.py", line 54, in <module>
    from UbuntuDrivers import detect
ImportError: No module named 'UbuntuDrivers'

O que posso fazer para corrigir isso? Ou com o que eu mexi que não deveria ter feito?

    
por Aguxez 26.10.2016 / 21:49

1 resposta

7

Parece que você erroneamente deletou os pacotes da biblioteca Python para os principais drivers do Ubuntu. Tente reinstalar o ubuntu-drivers-common package.

sudo apt-get install --reinstall ubuntu-drivers-common

    
por Tejas Jadhav 25.11.2016 / 17:25