I have made a python application in Xubuntu that I am currently trying to run on Mavericks. The project uses PyQt4 for it\'s GUI portion. I am currently trying to install Py
After a lot of blood, sweat and tears I have put together a full complete list of installing pyqt on mavericks using python 3:
brew install python3
brew install qt
brew install sip --with-python3
brew install pyqt --with-python3
Add this to your .bash_profile:
PYTHONPATH=/usr/local/lib/python3.3/site-packages:$PYTHONPATH
Restart your computer.