On Monday, December 28, 2015 at 4:35:41 PM UTC+1, Brian Simms wrote: > Hi there, > > I have done a lot of looking around online to find out how to convert Python > files to .exe and .dmg files, but I am confused. Could someone provide > pointers/advice as to how I can turn a Python file into a Windows .exe and > Mac .dmg file. > > Thanks for any help.
You can convert Python Files to exe using Pyinstaller, this are the procedures below: Run this commands on your terminal: pip install pyinstaller pyinstaller nameofyourfile.py --onefile after that a folder should be created named Dist open it and you would see your Python file in an executable format. I think this would help you. ~Paul Fruitful -- https://mail.python.org/mailman/listinfo/python-list