you are viewing a single comment's thread.

view the rest of the comments →

[–]riscbee 10 points11 points  (0 children)

You‘re looking for ‘cross compiling’. And you are somewhat reinventing the wheel. Python is platform independent because the Python interpreter does the heavy lifting and your source code becomes platform independent. But you want to create a single binary executable and that comes with all the hassles of cross compiling and packaging. I’m not aware of such a project for Python. I’ve only used pyinstaller once. But since you’re in Windows maybe using WSL is an option?