#Machine binary execution

1 messages · Page 1 of 1 (latest)

stuck current
#

How can I compile my Python slash command code to binary and then just execute on activation to not lose time on translation to byte and then machine code (about the last part subprocessing.call)

wraith locust
#

Doesn't python normally compile code? The CPython implementation does, at least. You'll often get __pycache__ directories with .pyc files.

stuck current
#

No, I mean .exe files

unreal tendon
#

If you want to make an exe out of py you can use something like PyInstaller