View Single Post
Posts: 450 | Thanked: 16 times | Joined on Mar 2006
#47
Originally Posted by MadMan2k View Post
that is really weird. one last test: could you go into the console, type "python" and after the interpreter starts type "import gnome.gconf" that should at least give the same error message.
And while you are there also try just "import gconf".

If both fail, go back to console and try:
dpkg-query -S gconf.so
Is the following of any use to you?

Nokia-N800-50-2:~# python
Python 2.5.1 (r251:54863, Oct 25 2007, 15:53:25)
[GCC 3.4.4 (release) (CodeSourcery ARM 2005q3-2)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import gnome.gconf
>>> exit
Use exit() or Ctrl-D (i.e. EOF) to exit
>>>
Nokia-N800-50-2:~# python
Python 2.5.1 (r251:54863, Oct 25 2007, 15:53:25)
[GCC 3.4.4 (release) (CodeSourcery ARM 2005q3-2)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import gconf
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named gconf
>>> import gnome.gconf
>>>
Nokia-N800-50-2:~# dpkg-query -S gconf.so
python2.5-gnome: /usr/lib/python2.5/site-packages/gnome/gconf.so
Nokia-N800-50-2:~#