PDA

View Full Version : Need help : PyQT 4.8.5 installation on mac 10.6.8



kid
22nd September 2011, 14:01
Hallo all,

I am stucked with the installation of PyQT 4.8.5. (SIP 4.12.4 and QScintilla 2.5.1 are installed, qt version 4.7.4, Python 2.6.1).
it doesn't go further than determining the layout of a Qt installation, frozen for hours.

python configure.py --use-arc x86_64 --verbose

Determining the layout of your Qt installation...
/opt/local/bin/qmake -spec macx-g++ -o qtdirs.mk qtdirs.pro
make -f qtdirs.mk
/usr/bin/g++-4.2 -c -pipe -O2 -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.6 -Wall -W -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SHARED -I/opt/local/share/qt4/mkspecs/macx-g++ -I. -I. -I/opt/local/include/QtCore -I/opt/local/include -o qtdirs.o qtdirs.cpp
/usr/bin/g++-4.2 -headerpad_max_install_names -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.6 -o qtdirs.app/Contents/MacOS/qtdirs qtdirs.o -L/opt/local/lib -lQtCore
qtdirs.app/Contents/MacOS/qtdirs

and no further.

Any idea what has gone wrong?

tried homebrew, macports, fink - all the same. Frozen at some point and the installation is never completed.

Thanks in advance.

kid
23rd September 2011, 16:51
Looks like I am going to answer my own question :)
Apparently, the path to qmake was not specified.

running

python configure.py -q /usr/bin/qmake --use-arch x86_64

solves the problem.