Perhaps easy_install, pip, and brew all result in an error from the package. .. ..
It seems that you need to build it yourself Procedure for the time being
http://www.riverbankcomputing.co.uk/software/sip/download Download the latest version of compression (4.14 at this point) with tar.gz from.
On the shell screen
tar zxvf sip-4.14.tar.gz
cd ./sip-4.14
python3.2 ./configure.py --arch=x86_64
make
make install
Maybe configure.py will give an error. I was.
Error: SIP requires Python to be built as a framework
The solution is based on the results of various searches
http://meme.biology.tohoku.ac.jp/students/iwasaki/python/pyqt.html
Than.
It's about line 1490 in siputils.py and line 1600 in sipconfig.py under ./sip-4.14
ex
if "Python.framework" not in dl:
error("SIP requires Python to be built as a framework")
If you comment out with # at the beginning of the line, it will pass, maybe.
Recommended Posts