I just managed to get ZebraTrace to work on my mac using Homebrew.
brew install pyqt
After everything has been installed you need to update your path as brew will tell you. My commands looked like this:
Python modules have been installed and Homebrew's site-packages is not in your Python sys.path, so you will not be able to import the modules
this formula installed. If you plan to develop with these modules,
please run:
mkdir -p /Users/MyName/Library/Python/2.7/lib/python/site-packages
echo 'import site; site.addsitedir("/usr/local/lib/python2.7/site-packages")' >> /Users/MyName/Library/Python/2.7/lib/python/site-packages/homebrew.pth
Then you can start it with:
python ZebraTrace.pyw
Hope that helps someone...

|