In this video from the Python Projects Series, you will learn how to convert a '.py' script to a '.exe' file using the 'cx-Freeze' Module.
Video Contents:
0:00 - Create 'setup.py' file and import modules
0:10 - Configure 'setup.py' script
0:55 - Run 'setup.py' to create the .exe file
1:25 - Run .exe created
1:43 - Thank You!
Using this method to create an executable from a python script will allow you to create a fully packaged app with all the python dependencies and libraries. You can then just 'zip' the file and share it with others without them needing to have Python or any of the dependencies installed.
#tws #python #exe