I've attempted to install Zbar for use with python 2.7.6 with Homebrew and pip (brew install zbar, then pip install zbar) but every time I import it, python crashes. Simply running:
#!/usr/bin/python
import zbar
lands me with this from the terminal:
:~ aj$ cd '/Users/aj/Documents/nlcc/check in/python/' && '/usr/bin/python'
'/Users/aj/Documents/nlcc/check in/python/test.py'
&& echo Exit status: $? && exit 1
Segmentation fault: 11
Other modules (wxPython, Numpy, openCV) work just fine, but this one gives me the same crash every time. I've tried compiling and installing zbar from source, thinking it might be an issue with Homebrew (or maybe even pip), but that has its own set of issues that are quite honestly over my head (i.e. missing a dylib after running ./configure with options, and then the developer's setup.py). Anyone have any ideas? Sorry if I'm missing any relevant info, if anyone would like any other logs, just let me know how to retrieve them, and I'll post them as soon as I can, like I said, a lot of this is over my head.