0
1441
You can use PyInstaller to package Python programs as standalone executables. or (exe).
This works on all OS like Windows, Linux, and Mac.
First Install PyInstaller from PyPI:
pip install pyinstaller
Note: In case of Windows "pyinstaller" will be installed in "path to python\\Scripts" directory
Go to your program’s directory and run:
pyinstaller yourprogram.py
This will generate the bundle in a subdirectory called dist (Your exe or executable will be generated here)
For a more detailed walkthrough, see the manual.
Comment here