Python Forum
Distributing custom version of Python - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: Distributing custom version of Python (/thread-16987.html)



Distributing custom version of Python - touc82 - Mar-23-2019

We have a large Windows and Linux application that we distribute to clients. We would like to ship our own version of Python with the application - essentially a basic version of Python with a couple of additions such as lxml. Our application will use this version of Python. How do we go about building this custom version (on Windows and Linux) ?


RE: Distributing custom version of Python - Larz60+ - Mar-23-2019

you want to create a python .exe which includes the interpreter.
see: https://pypi.org/project/PyInstaller/