I installed pyqt4 by using Homebrew. But when I import PyQt4 in python interpreter, It said that \"No module named PyQt4\". Can somebody help me with that?
If you're using Anaconda to manage Python on your system, you can install it with:
$ conda install pyqt=4
Omit the =4 to install the most current version.
=4
Answer from How to install PyQt4 in anaconda?