[PyInstaller] Calling separate Python process

2016-01-26 Thread Jakob de Maeyer
Hi everyone, is it possible to invoke a separate Python process? Á la subprocess.call(['python', 'setup.py']) but with the bootloader taking care of things. My use case is a script that downloads packages via pip, then needs to build an egg via "python setup.py bdist_egg". Thanks, -Jakob --

[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