Some users have encountered the following error while trying to run Keryx on Linux.
ImportError: No module named delayedresult
This error is a result of using an older version of WxPython. The solution is to remove the older WxPython libraries and install the newer ones. In Ubuntu that is accomplished with this command:
sudo apt-get remove libwxbase2.6-0 libwxgtk2.6-0 python-wxgtk2.6 && sudo apt-get install libwxbase2.8-0 libwxgtk2.8-0 python-wxgtk2.8

[...] This post was mentioned on Twitter by Chris Oliver, Jacob Kuehndorf. Jacob Kuehndorf said: RT @excid3: Problem with import delayedresult: http://keryxproject.org/2010/01/no-module-named-delayedresult/?lang=es [...]
[Translate]
I have tested and confirmed this fix
Also note that on Ubuntu 9.10, I had both the 2.6 and 2.8 modules installed, but removing the 2.6 ones fixed the issue
Cheers
[Translate]