Python: Converting a Script to an Executable
If you haven't installed pyinstaller:
pip install pyinstaller
To use it, go to your project's directory and open the command prompt:
pyinstaller --onefile script-name.py
pip install pyinstaller
pyinstaller --onefile script-name.py
Any fool can write code that a computer can understand.
Good programmers write code that humans can understand.
— Martin Fowler