Re: [PyInstaller] Bundle python interpreter executable

2016-01-26 Thread Hartmut Goebel
Am 13.01.2016 um 15:58 schrieb Jakob de Maeyer: > In the frozen version, the subprocess line fails since it cannot find > the 'python' executable. I see that 'python27.dll' is bundled, but > there's no 'python.exe' (I'm trying this on Windows right now but > it'll be cross-platform later, python ve

[PyInstaller] Bundle python interpreter executable

2016-01-26 Thread Jakob de Maeyer
Hey everyone, I have a script (that I'd like to freeze) which generates a setup.py file, then calls 'python setup.py [some args]' to build a Python egg, e.g.: # Generate setup.py here if getattr(sys, 'frozen', False): exe = sys.executable else: exe = 'python' sub