mirror of
https://github.com/brentvollebregt/auto-py-to-exe.git
synced 2026-04-27 12:45:50 +03:00
[GH-ISSUE #115] Does it contains the python compiler itself? #110
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @donno2048 on GitHub (Aug 12, 2020).
Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/115
If I send the exe file to another computer without the python compiler would it run?
@brentvollebregt commented on GitHub (Aug 12, 2020):
Yes, the Python interpreter gets packaged with your scripts and some other stuff; that is the whole point of packaging it to an exe - so you can run it on a machine without Python.
@donno2048 commented on GitHub (Aug 12, 2020):
Thanks