I want to convert my python script to exe without additional files like ddl, pyd.. Is it possible?
Asked
Active
Viewed 800 times
0
-
1What script? What have you tried? What happened? – jonrsharpe Nov 19 '16 at 20:42
-
1Windows platform? Maybe try google - one program 've used is py2exe - http://www.py2exe.org/index.cgi/Tutorial – dbmitch Nov 19 '16 at 20:46
-
1You can use pyinstaller To install : http://stackoverflow.com/a/21000866/6833134 How to use: http://stackoverflow.com/a/34454262/6833134 – AlexDotis Nov 19 '16 at 20:52
1 Answers
1
Use pyinstaller https://github.com/pyinstaller/pyinstaller
Install it by running pip install pyinstaller
in terminal / console
Then run pyinstaller --onefile yourscriptsname.py
and it will create you an exe file in the same directory

VanDarkholme
- 65
- 1