Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create standalone executable file from python 3.5 scripts?

Most of the programs available only support upto python version 3.4.

like image 771
Abhinav Avatar asked Oct 16 '15 10:10

Abhinav


1 Answers

You can use PyInstaller which support python 3.5.

To install it with pip execute in terminal: pip install pyinstaller

To make the .exe file:

pyinstaller --onefile script.py
like image 127
cosmoscalibur Avatar answered Sep 19 '22 07:09

cosmoscalibur