On Fri, 22 Feb 2008 09:10:22 +0100 Joerg Lehmann <joerg@luga.de> wrote:
On 21.02.08, Claudio Pascalis wrote:
It is running now but it nevertheless keeps my CPU at 100% :(
Well, I have to admit that's kind of hard to debug. One of the threads seems to make a problem. Just a question: Are you sure that the database rebuild has already finished?
Yes, I'm sure.
When pytone starts it is complaining:
PyTone-3.0.1/src/services/players/internal.py:25: RuntimeWarning: Python C API version mismatch for module pcm: This Python has API version 1012, module pcm has version 1013. import pcm PyTone-3.0.1/src/services/players/internal.py:32: RuntimeWarning: Python C API version mismatch for module bufferedao: This Python has API version 1012, module bufferedao has version 1013. import bufferedao
That happens because the Python version you used to compile the extension modules needed by PyTone (i.e., when running setup.py) is not the same as the one used when running PyTone. Probably you have two different versions installed and the shell script distributed with PyTone 3.0.1 is hardcoded to use a non-default one. So you might want to change that.
But it should not be a problem, anyway.
Jörg
I will try to delete everything and build it again in the next days... Thanks so far for your help Claudio