Qt 6.11 is out! See what's new in the release
blog
QMAKE not found
Installation and Deployment
4
Posts
4
Posters
27.9k
Views
1
Watching
-
Dear readers,
when I open my terminal on my Mac and I want to use qmake commands it tells me:
-bash: qmake: command not found
Can someone please tell me how to fix this?
QT is installed at:/Devbizz/QtSDK/
Devbizz is my computer name by the way :)
-
Just add it to path. Like this:
@
PATH="/Devbizz/QtSDK/Desktop/<your qt version>/<compiler, usually gcc>/bin:$PATH"
@You can add this line to your .profile (although I think this file is called a bit different on Mac, you'll have to check that).
-
On Mac OSX Lion that syntax is not correct.
I had to add this line of code on .bash_profile:@PATH=$PATH:/Users/marco/QtSDK/Desktop/Qt/4.8.1/gcc/bin
@
Obviously "/Users/marco" is my home folder