You are not logged in.
Pages: 1
Does anyone know where to get gnome.ui?
I am trying to run a painting program written in python, but I get this:
$./gogh
Traceback (most recent call last):
File "./gogh", line 23, in ?
from goghmain import GoghWindow
File "/home/galdona/Gogh-0.0.1.060608/goghmain.py", line 28, in ?
import gnome.ui
ImportError: No module named gnome.ui
$
I already have libgnomeui installed.
Offline
edit: i am not able to read
Offline
Try:
pacman -S gnome-python
Offline
Thanks, that worked. However, there is now a new error:
$ ./gogh
Traceback (most recent call last):
File "./gogh", line 23, in ?
from goghmain import GoghWindow
File "/home/Galdona/Gogh-0.0.1.060608/goghmain.py", line 34, in ?
from brushmanager import BrushManager
File "/home/Galdona/Gogh-0.0.1.060608/brushmanager.py", line 30, in ?
from settingmanager import *
File "/home/Galdona/Gogh-0.0.1.060608/settingmanager.py", line 27, in ?
import xml.dom.ext
ImportError: No module named ext
$
I have actually been emailing the author of the program but he hasnt responded.
By the way, is the pygtk pkg in the repos compiled with numeric? because that is one of its dependencies. From one of the threads here it seems to be so, but how to check myself?
(also, if you're interested, this is the site of the project: http://www.goghproject.com/index.html )
Offline
I'm not a Python expert, but you may need pyxml.
Offline
You should really post source somewhere if you want people to debug it for you.
Offline
thanks skottish, that's what it needed.
it's not my own program codemac. it wasn't a bug that needed fixing. I was just missing a dep.
Offline
Pages: 1