Running OSX (10.8.2) here, replaced their python with Homebrew's. All good:
$ which python
/usr/local/bin/python
Installed pip, virtualenv with brew python. Installed pyqt with brew.
If I
$ python
>>> import PyQt4
, no problems. However, if I
(env)$ python
>>> import PyQt4
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named PyQt4
Why can't the virtualenv python environment see my system-wide install of pyqt?
Thanks!