Running Python, Linux executables in Kodi - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Game support (https://forum.kodi.tv/forumdisplay.php?fid=292) +--- Thread: Running Python, Linux executables in Kodi (/showthread.php?tid=367762) |
Running Python, Linux executables in Kodi - Boyney - 2022-04-06 I've made a few games in Python, Unity, etc. and I want to run them on Kodi as well. Is there a way to do this? I'm using LibreELEC on a Raspberry Pi 3. RE: Running Python, Linux executables in Kodi - LittleBear1981 - 2022-04-10 xbmc.executebuiltin('RunScript(script.myscript)') From: https://kodi.wiki/view/Built-in_scripting I have used this method to launch other apps or scripts on the system RE: Running Python, Linux executables in Kodi - Boyney - 2022-04-11 Thank you for this resource! It seems like it would be hard to run Pygame directly with this method. Is there any easy way to do this in LibreELEC? RE: Running Python, Linux executables in Kodi - Wintermute0110 - 2022-04-12 You can use Advanced Emulator Launcher to launch executables from Kodi. RE: Running Python, Linux executables in Kodi - Boyney - 2022-04-12 Sounds interesting. Could you send a link to the docs or something? RE: Running Python, Linux executables in Kodi - Wintermute0110 - 2022-04-13 (2022-04-12, 14:51)Boyney Wrote: Sounds interesting. You have the link to the AEL thread in this forum on my signature. There you have some links to the documentation. However, at this moment the documentation is not great but AEL is very easy to use. To launch Python scripts you need to create a Standalone Launcher with the context menu. In Linux, make sure your script has the correct executable permissions and also a shebang. RE: Running Python, Linux executables in Kodi - Boyney - 2022-04-13 Thank you so much, I’ll check it out when I get the chance! |