On Thu, 3 Nov 2011, A. Heifets wrote:
Ok. Why are you using such an old version of Python?
We have dependencies elsewhere in the system that lock us into 2.4
Not that I think that's the problem - just curious.
Any idea what the problem is? Or what additional diagnostics I can try?
You said:
/usr/lib64/python2.4/site-packages/jcc, as you can see above. I
edited the Makefile to contain the following settings:
That's unexpected. JCC should get installed as an egg. For example, on my
system, its installation dir looks like:
.../lib/python2.6/site-packages/JCC-2.11-py2.6-macosx-10.6-x86_64.egg
Are you using setuptools or just distutils ?
Do you have a _jcc.so file in your jcc installation tree somewhere ?
Have you tried to set a breakpoint at line 35 in that __init__.py file and
poked around to see what is and is not there ?
For example, for me, I get this:
(Pdb) p _jcc
<module 'jcc._jcc' from
'/Users/vajda/apache/pylucene-3.x/_install/lib/python2.6/site-packages/JCC-2.11-py2.6-macosx-10.6-x86_64.egg/jcc/_jcc.so'>
Andi..