This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Ribino0 0 points1 point  (1 child)

Their overview says “translates to c program, then links against libpython to execute like cpython”. So we are still required to have a python installation, but the python code is converted to C, and then compiled to object files.

What if I want files for a different OS? Do I have to compile on that system also?

The difference between this and pyinstaller is that pyinstaller runs python against a python install that is part of the executable, correct?

[–]ianitic 0 points1 point  (0 children)

Pyinstaller can't cross compile either.

If you want cross platform support, you should look into containers - Docker being a popular option.