Have you ever realized that when you want to give a script you made in Python to a client to try out, they won't be able to run it without a Python environment? A tool called "PyInstaller" is useful ...
This is a Github Action that creates executables for Linux, MacOS and Windows on a single release using Pyinstaller. I've created this myself because searching on the web I couldn't find a similar ...
"one file" builds - this gives us a single "gam" binary executable (gam.exe on Windows) with Python and all resultant libraries/packages/text files bundle into it. "one directory" builds - this still ...