I need to parse a potentially large json file. So I looked for solutions to help me and found the ijson library. Seems to perfect for this purpose.
I installed it with pypm (I use Active Python), ports and directly with the supplied setup script.
But as soon as I
import ijson
I get an error
Exception: YAJL shared object not found.
The culprit seems to be the function util.find_library('yajl'), which is looking for a module named 'yajl' - which I have installed, too! But which find_library does NOT find.
Warning: I am not a UNIX (or OSX) expert. I can handle Python fine but are totally helpless when it comes to things which might be totally simple to anyone educated in UNIX/Linux.