I would like building an executable for a python 3 script that:
To create an executable file of your Python program, run the following command in CMD.First you need to install pyinstaller, with the following command:
pip install pyinstaller
And then do the following to create one executable file of your Python program, first, Go to your program path, (with cd
) where your Python (.py) file is, and then:
pyinstaller -w -F YourPyFile