On Tue, 21 Jul 2009 19:10:18 +0100, Rhodri James <[email protected]> wrote:
> On Tue, 21 Jul 2009 18:19:44 +0100, Paul McNett <[email protected]> wrote: > >> Rhodri James wrote: >>> I've seen this crop up once or twice in the archives, but I'm not sure >>> what >>> the solution is from my perspective. >> >> I don't know what the solution is, either. All I know is that everyone >> that's reported this seems to be running Python 2.6, which we don't >> really support yet. >> >> Can you try with Python 2.5? > > Same problem, which may, of course, be because 2.5 isn't my default. > I reinstalled (using 2.5) before trying this: > > rho...@gnudebst:~/Tools/dabo/demo$ python2.5 DaboDemo.py > Traceback (most recent call last): > File "DaboDemo.py", line 6, in <module> > import dabo > File "/usr/lib/python2.5/site-packages/dabo/__init__.py", line 130, in > <module> > dLocalize.install("dabo") > File "/usr/lib/python2.5/site-packages/dabo/dLocalize.py", line 56, in > install > setLanguage(_defaultLanguage, _defaultEncoding) > File "/usr/lib/python2.5/site-packages/dabo/dLocalize.py", line 76, in > setLanguage > daboTranslation = gettext.translation("dabo", daboLocaleDir, > languages=lang, codeset=charset) > File "/usr/lib/python2.5/gettext.py", line 484, in translation > raise IOError(ENOENT, 'No translation file found for domain', > domain) > IOError: [Errno 2] No translation file found for domain: 'dabo' > Some further investigation now that I'm back from an evening meeting :-) The find function appeared to be looking for locale files in /usr/local/local/lib/python2.6/dist-packages/dabo/locale Unfortunately, they were actually installed in /usr/local/dabo/locale A quick symlink took care of that. Now I have to figure out why it can't see wx.aui, amongst other things! -- Rhodri James *-* Wildebeest Herder to the Masses _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/op.uxfunrhva8n...@gnudebst
