Greetings, Can someone enlighten me on this? (most versions should be obvious from the text) This is the 1st time I've seriously played with anything using python, so its probably something dumb.
I have managed to get 1.7.6.1 (from debian packages at http://debian.geole.info/) working through alot of hacks and horrible things, so I'm trying to get 1.8.2 to run cleanly from the unpacked tarball, or at the very least, installed its own directory. I eventually got to: [EMAIL PROTECTED] freevo-1.8.2]$ \ PYTHONPATH=/usr/share/python-support/beautifulsoup/:/usr/share/python-support/python-elementtree/:/usr/lib/python-support/python-lirc/python2.4 ./freevo trying "/var/lib/freevo"... [EMAIL PROTECTED] freevo-1.8.2]$ Here's the last bits of an strace -f if it helps: 28424 munmap(0xb73ef000, 8192) = 0 28424 stat64("/opt/freevo/freevo-1.8.2/src/event", 0xbfe1fbdc) = -1 ENOENT (No such file or directory) 28424 open("/opt/freevo/freevo-1.8.2/src/event.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) 28424 open("/opt/freevo/freevo-1.8.2/src/eventmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) 28424 open("/opt/freevo/freevo-1.8.2/src/event.py", O_RDONLY|O_LARGEFILE) = 8 28424 fstat64(8, {st_mode=S_IFREG|0644, st_size=19930, ...}) = 0 28424 open("/opt/freevo/freevo-1.8.2/src/event.pyc", O_RDONLY|O_LARGEFILE) = 9 28424 fstat64(9, {st_mode=S_IFREG|0664, st_size=12602, ...}) = 0 28424 mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb73ef000 28424 read(9, "[EMAIL PROTECTED]"..., 8192) = 8192 28424 fstat64(9, {st_mode=S_IFREG|0664, st_size=12602, ...}) = 0 28424 read(9, "_GRID3t\20\0\0\0IMAGE_ZOOM_GRID4t\20\0\0\0"..., 8192) = 4410 28424 read(9, "", 8192) = 0 28424 close(9) = 0 ... lots of KILL and INT etc. signals being sent after here, so it looks like its already decided to shutdown. On the premise of this message: http://sourceforge.net/mailarchive/message.php?msg_id=20080616105048.GA16356%40hennevogel.de (although in my case it never even tried to open a local_conf.py) I tried: [EMAIL PROTECTED] freevo-1.8.2]$ \ PYTHONPATH=/usr/share/python-support/beautifulsoup/:/usr/share/python-support/python-elementtree/:/usr/lib/python-support/python-lirc/python2.4:/opt/freevo/lib/python2.4/site-packages/kaa ./freevo Traceback (most recent call last): File "/opt/freevo/freevo-1.8.2/src/main.py", line 46, in ? import twisted File "/usr/lib/python2.4/site-packages/twisted/__init__.py", line 19, in ? from zope.interface import Interface File "/usr/lib/python2.4/site-packages/zope/interface/__init__.py", line 55, in ? from zope.interface.interface import Interface, _wire File "/usr/lib/python2.4/site-packages/zope/interface/interface.py", line 703, in ? Interface = InterfaceClass("Interface", __module__ = 'zope.interface') File "/usr/lib/python2.4/site-packages/zope/interface/interface.py", line 484, in __init__ Specification.__init__(self, bases) File "/usr/lib/python2.4/site-packages/zope/interface/interface.py", line 270, in __init__ self.dependents = weakref.WeakKeyDictionary() AttributeError: 'module' object has no attribute 'WeakKeyDictionary' [EMAIL PROTECTED] freevo-1.8.2]$ This may be important: the system is Debian 4.0 (stable). unstable is not an option. If theres something else thats out of date, I'll consider doing it from source also. But note that kaa has already been tried from newest source (see above), /opt/freevo contains the kaa stuff underneath the 1.8.2 freevo download, I just did `python setup.py --prefix=/opt/freevo` for them. ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Freevo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-users
