Condition:

  1. The user may have an operating system Windows, Linux, X.
  2. The user does not necessarily have Python installed.
  3. The programmer has a Python3 script with the necessary functionality for the user. The script contains third-party modules (for example, Pillow). The programmer works in Linux.

Task: - Make the script executable without the need for separate downloading of modules, Python and additional system settings.

  • 3
    pyinstaller and build for each OS - gil9red
  • If you don’t want your "exe" to be decompiled and take the source code, then Nuitka. Nuitka translates python code in C ++ and then compiles it into machine code. And the size of the executable file becomes smaller. - Tanya

0