How to generate an executable program in python [duplicate]

-3

I started to see programming languages at a certain time, I am currently learning Python, JavaScript and others.

And would you like to know how I can generate a program that is independent of the interpreter? I mean, generate an executable.

    
asked by anonymous 13.07.2018 / 22:22

1 answer

0
Depending on the application programs like cx_Freeze and PyInstaller are usually good options for generating executables:

Cx_Freeze

link

PyInstaller

link

    
13.07.2018 / 22:35