error on configure qtractor-0..9.7 (no qmake)
-
checking for qmake... no
checking for qmake-qt5... no
checking for Qt major version... ./configure: line 4793: no: command not found
0
checking for qmake-qt5... no
configure: error: qmake-qt5 not found in current PATH. Maybe QT development environment isn't available. (qt5-devel)
what can i do to fix this? -
You need to install qt5-devel, as the error message suggests, or install Qt from the installer (qt.io/downloads) and add path to
qmake
to your$PATH
variable. -
You need to install qt5-devel, as the error message suggests, or install Qt from the installer (qt.io/downloads) and add path to
qmake
to your$PATH
variable. -
Hi,
In the terminal, use something like:
export PATH=/path/to/folder/containing_qmake:$PATH
Then build your project.
Note that if you follow @sierdzio recommendation about installing qt5-devel from your distribution, you won't ned that.
-
Hi,
In the terminal, use something like:
export PATH=/path/to/folder/containing_qmake:$PATH
Then build your project.
Note that if you follow @sierdzio recommendation about installing qt5-devel from your distribution, you won't ned that.
-
@rooted so please mark your post as such! Thanks.