2 Answers
+ 7
Yes, it is possible to do.
On command prompt:
>>> pip install pyinstaller
Then to create your executable, open command prompt in the folder that contains your .py file and execute the command:
pyinstaller yourfile.py
For more options (output one single file, no console, etc) you should check https://www.pyinstaller.org/
This is a good tutorial:
https://youtu.be/lOIJIk_maO4
+ 2
thankyou Tortello