Cannot deploy Qt app to Raspberry Pi 3
-
Hi everyone,
I have a Raspberry Pi 3 running on Raspberry Pi OS.
I am using Qt Creator 11.0.3 and Boot2Qt 5.15.0 Raspberry Pi 3 kit on Ubuntu 22.04.3. I have added Raspberry Pi 3 using SSH to Qt Creator, which passes the test. However, when I select release build and click on "Run", I get the following error:
"The process failed to start. Either the invoked program "ssh://pi@ipaddress/usr/bin/appcontroller" is missing or you may have insufficient permissions to invoke the program"
Could anyone guide me on this?
Thanks in advance.
-
@Talha-Yousuf said in Cannot deploy Qt app to Raspberry Pi 3:
ssh://pi@ipaddress/usr/bin/appcontroller
This should actually be:
ssh://pi@ipaddress:/usr/bin/appcontroller
-
@jsulm Thank you for your response. I am getting this exact error on the application output tab in Qt Creator.
I tried "ssh://pi@ipaddress:/usr/bin/appcontroller /home/pi/LL01sof001" from terminal on my host machine. I get "bash: ssh://pi@10.1.91.119:/usr/bin/appcontroller: No such file or directory"
-
-