Home > other >  How can I run a Python script without source files on Raspbian?
How can I run a Python script without source files on Raspbian?

Time:02-27

I developed a Python script on Raspberry Pi 3 Model B , which runs on a Raspbian operating system. I would like my application to start by double clicking on a desktop icon. However this should work without needing the application source file. As happens when C programs are compiled, for example.

CodePudding user response:

I think pyinstaller library can help you there. I found a few guides, this one seems to be achieving what you are looking for: https://www.geeksforgeeks.org/convert-python-script-to-exe-file/

  • Related