Python Forum
How to build exe/deployable file from Python Project - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: How to build exe/deployable file from Python Project (/thread-19566.html)



How to build exe/deployable file from Python Project - ShikhaJain - Jul-04-2019

I am new to Python, and I have a Python application with few .py files, and few config files in a separate config folder under the project.
I have to deploy this application in production. Which utility shall I use to create the exe/deployable version along with the config folder ?


RE: How to build exe/deployable file from Python Project - snippsat - Jul-04-2019

(Jul-04-2019, 04:48 PM)ShikhaJain Wrote: Which utility shall I use to create the exe/deployable version along with the config folder ?
Pyinstaller is bye fair best the best maintained project for freezing code.
At first you just try,it can happens that Pyinstaller find all also files in config folder.
If not there are several way to add data in Pyinstaller.