01-28-2025, 08:37 PM
(01-28-2025, 06:50 PM)Atlantis Wrote: OK, how to make an exe out of these files?
install python for windows https://www.python.org/ and just run/execute these files
p.a.c.k. is quite old but still good, it was written in the style of python 2.7, which is now obsolete, this leads to some incompatibilities, you will have to change/modify all print statements, example given
old python 2.7
print "test"
to new python 3.*
print("test")