PyGIWarning quando sudo update-manager -d

2

Tenho alguma instalação incompleta?

$ sudo update-manager -d
sys:1: 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.
sys:1: PyGIWarning: GdkX11 was imported without specifying a version first. Use gi.require_version('GdkX11', '3.0') before import to ensure that the right version gets loaded.
sys:1: PyGIWarning: Dbusmenu was imported without specifying a version first. Use gi.require_version('Dbusmenu', '0.4') before import to ensure that the right version gets loaded.
sys:1: PyGIWarning: Unity was imported without specifying a version first. Use gi.require_version('Unity', '7.0') before import to ensure that the right version gets loaded.
    
por Lee 21.03.2016 / 16:09

1 resposta

2

Não, esses são apenas avisos que devem ser corrigidos no código update-manager .

Esses avisos estão apenas pedindo ao código Python para especificar uma versão durante a importação da biblioteca. Mas eles não são erros e o programa funcionará normalmente.

    
por Rael Gugelmin Cunha 04.04.2016 / 13:16