importuj błędy za pomocą Pythona i Gtk + 3

Pracuję w programie, który jest napisanyGtk + 3 iPyton. Powiązane pytanie, które zadałem o mój program, brzmi:tutaj.

Teraz, gdy awansowałem trochę więcej, mam następujące importowanie:

import aplpy
import montage
import subprocess
from gi.repository import Gtk, GdkPixbuf

a gdy go uruchomię, pojawia się ten błąd:

$ ./makeRGB-frame.py 
Traceback (most recent call last):
  File "./makeRGB-frame.py", line 34, in <module>
    from gi.repository import Gtk, GdkPixbuf
  File "/usr/lib64/python2.7/site-packages/gi/__init__.py", line 27, in <module>
    from ._gi import _API, Repository
ImportError: could not import gobject (error was: ImportError('When using gi.repository you must not import static modules like "gobject". Please change all occurrences of "import gobject" to "from gi.repository import GObject".',))

Jeśli zmienię kolejność importu:

from gi.repository import Gtk, GdkPixbuf
import aplpy
import montage
import subprocess

Dostaję też błąd:

$ ./makeRGB-frame.py 
/usr/lib64/python2.7/site-packages/gobject/constants.py:24: Warning: g_boxed_type_register_static: assertion `g_type_from_name (name) == 0' failed
  import gobject._gobject
/usr/lib64/python2.7/site-packages/gtk-2.0/gtk/__init__.py:40: Warning: specified class size for type `PyGtkGenericCellRenderer' is smaller than the parent type's `GtkCellRenderer' class size
  from gtk import _gtk
/usr/lib64/python2.7/site-packages/gtk-2.0/gtk/__init__.py:40: Warning: g_type_get_qdata: assertion `node != NULL' failed
  from gtk import _gtk
Segmentation fault (core dumped)

Zaimportowane moduły to:APLpy ipython-montaż.

Pomóż mi obejść te błędy. Każda pomoc jest doceniana!

Niemiecki.

questionAnswers(1)

yourAnswerToTheQuestion