| 17 | |
| 18 | == Problems == |
| 19 | |
| 20 | === Edgy === |
| 21 | |
| 22 | While the tahoe package on edgy will install, it appears that the version of Nevow (0.7.0) which shipped with edgy is broken, preventing the tahoe node's webserver from running. The symptom is an exception at node startup that looks like this: |
| 23 | |
| 24 | {{{ |
| 25 | File "/var/lib/python-support/python2.4/formless/annotate.py", line 17, in ? |
| 26 | from nevow.compy import Interface, MetaInterface |
| 27 | exceptions.ImportError: cannot import name MetaInterface |
| 28 | }}} |
| 29 | |
| 30 | We do not yet know of a solid workaround for this. One suggestion is to comment out the "from allmydata.webish import WebishServer" line from allmydata/client.py and not use the 'webport' feature. Another is to modify formless/annotate.py and try to fix that import problem. A third is to find a backport of a newer version of nevow. |
| 31 | |