How to deploy pyqt5 application on raspberry pi from qt creator on windows 10?
-
wrote on 16 Jun 2022, 14:54 last edited by
I need steps to create a single file application that I can run on my raspberry pi. Every help is welcome.
Thanks in advance. -
I need steps to create a single file application that I can run on my raspberry pi. Every help is welcome.
Thanks in advance.wrote on 16 Jun 2022, 18:17 last edited byHi @osman_seco,
You can use PyInstaller or Nuitka to build and create an executable from Python code. You can find several documentation and examples.
Note:
Nuitka requires you to use --plugin-enable=pyqt5 command option to build PyQt5 application. -
Hi @osman_seco,
You can use PyInstaller or Nuitka to build and create an executable from Python code. You can find several documentation and examples.
Note:
Nuitka requires you to use --plugin-enable=pyqt5 command option to build PyQt5 application.wrote on 20 Jun 2022, 10:32 last edited by@ndias
Thank you, can I specify which process architecture needs to deploy for example arm64. -
@ndias
Thank you, can I specify which process architecture needs to deploy for example arm64.wrote on 21 Jun 2022, 09:51 last edited byHi @osman_seco,
I've never tried cross-compile on Nuitka. But you can compile your code on a Raspberry Pi.
PS: Regarding the use of Nuitka commands you can find brief information in the following topic
4/4