David Frager wrote: > This did not appear to help. I even went as far as deleting ~/freevo-test > and re-installing everything...maybe I'm missing a step or I may have a bad > config file. > > 1) svn co svn://svn.freevo.org/kaa/trunk kaa > cd kaa > python setup.py install --prefix=~/freevo-test > > 2) svn co svn://svn.freevo.org/freevo/branches/rel-1 freevo-1.x > cd freevo-1.x > > 3) cd BeautifulSoup-3.0.5 > python setup.py install --prefix=~/freevo-test
step 3 is not necessary but does no harm. > 4) ./autogen.sh > > 5) python setup.py install --prefix=~/freevo-test > > 6) cd ~/freevo-test > copied backup of freevo.conf and local.conf.py > > PYTHONPATH=/root/freevo-test/lib/python2.5/site-packages > PATH=/root/freevo-test/bin:/usr/lib64/qt-3.3/bin:/usr/kerberos/sbin:/usr/ker > beros/bin: > /usr/lib64/ccache:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/b > in:/root/bin You now have a different error: > AttributeError: 'module' object has no attribute 'coroutine' This is most likely caused by picking up an old kaa version instead of the svn version. PYTHONPATH should be: /root/freevo-test/lib/python2.5/site-packages/freevo: /root/freevo-test/lib/python2.5/site-packages I've split the line up so that you can see it better. You should see in /root/freevo-test/lib/python2.5/site-packages two directories: freevo and kaa (BeautifulSoup will be there too). We import kaa modules as kaa.module but the freevo modules are imported relative to freevo, eg. import config is used rather than import freevo.config. This is why freevo needs to be in the PYTHONPATH. I may need to update the wiki page with this information. You may also need to update the freevo svn, as I've put in a fix for freevo simply exiting when kaa has not been installed. HTH Duncan ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Freevo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-users
