Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PyQt setup for Qt 4.7.4

I try to install PyQt to develop Python apps using Qt. I downloaded SIP and PyQt4 from http://www.riverbankcomputing.co.uk and compiled the packages.

But I encountered a problem while compiling PyQt4:

I ran python configure.py in the Terminal and I got:

Error: Make sure you have a working Qt v4 qmake on your PATH or use the -q
argument to explicitly specify a working Qt v4 qmake.

I looked in Qt settings and i saw the path for qmake defined here 'home/user/.QtSDK/Simulator/Qt/gcc/bin/qmake'. Where else should be this path set up?

And how can i configure qt so i can write code directly into Qt Creator and execute it from there like any other c++ file for example. I installed Qt from the Nokia website and it was installed in /home/user/.QtSDK folder.

Thanks.

like image 409
Jacob Krieg Avatar asked Oct 21 '11 19:10

Jacob Krieg


2 Answers

The error message says that the PyQt installer cannot find the qmake executable. Running these two commands should solve it:

PATH=$PATH:~/.QtSDK/Simulator/Qt/gcc/bin/
export PATH

Afterwards, resume your installation.

like image 88
Andre Avatar answered Oct 03 '22 00:10

Andre


make -q /home/user/.QtSDK/Simulator/Qt/gcc/bin/qmake

Does that work? I'm not sure if the error came up when you ran make, but I assume so. If not, add -q /home/user/.QtSDK/Simulator/Qt/gcc/bin/qmake to the proper command.

like image 36
Griffin Avatar answered Oct 02 '22 23:10

Griffin