Re: v = vte.Terminal() AttributeError: 'module' object has no attribute 'Terminal'

2010-12-07 Thread edicionsdigitals.com edicions digitals xarxa social slu
ry to run a terminal emulation using Python+Gtk+Vte. Before develop > > my own sources, i'm testing some examples like this > > ;http://www.eurion.net/python-snippets/snippet/Embed%20a%20VTE%20termi... > > > But when i try to run, i get this message error; > > >    

Re: v = vte.Terminal() AttributeError: 'module' object has no attribute 'Terminal'

2010-12-07 Thread bruno.desthuilli...@gmail.com
, i get this message error; > >     v = vte.Terminal() > AttributeError: 'module' object has no attribute 'Terminal' Before any other thing, make sure the "vte" module you imported is the expected one. Edit your script that way: # import vte try: import

v = vte.Terminal() AttributeError: 'module' object has no attribute 'Terminal'

2010-12-07 Thread Steve
Error: 'module' object has no attribute 'Terminal' I'm using ubuntu 9.10 karmic. I've installed (apt-get) python-gtk, /2, -dev, libvte... Anyone know if there's a bug on this using karmic, or i must to download and compile gtk/vte from sources? thanks, Ste