0

When I do deploy to Ubuntu device debug I get the following message

:-1: error: The Qt version is invalid: qmake does not exist or is not executable
Terrance
  • 39,774
  • 7
  • 116
  • 176

2 Answers2

0

Try to do this:

sudo apt-get install qt5-default 

And then create manual Qt version.

Jakuje
  • 6,505
  • 7
  • 30
  • 37
RevakoOA
  • 101
  • 1
  • 5
0

Depending on whether you need QT4 or QT5 , install qtbase5-dev

sudo apt-get install qtbase5-dev

and/or install qtbase4-dev

sudo apt-get install qtbase4-dev

respectively...

Fabby
  • 34,341
  • 38
  • 97
  • 191
A.B.
  • 89,123
  • 21
  • 245
  • 323