I am trying to install PyQT and I used PyQT. Is has been installed using home brew. But When I try to import it, python can\'t. I get the following warning in Home brew. I am ne
Since you installed PyQt by using Homebrew, you should also use Homebrew Python 2.
To install it, run: brew install python
Now, you can import PyQt normally.
You should edit ~/.bash_profile
(create the file if it does not exist) to set the PYTHONPATH
environment variable:
export PYTHONPATH=`brew --prefix`/lib/python2.7/site-packages:$PYTHONPATH