Python script for exe on python 3.5

What can I use to go from python script to exe to 3.5? Because py2exe and CxFreeze only support up to 3.4.

Also, is it possible to create an executable without the generated .dll group? Because I would like to have only one .exe to share.

thanks

+6
source share
1 answer

Try pyinstaller. This worked fine for me with python 3.5.

Install pyinstaller with the following command

 pip install pyinstaller 

and build exe with pyinstaller --onefile your_pyfile.py . The --onefile generates a single file no larger than 6-8 megabytes in size.

+6
source

All Articles