Henning von Bargen added the comment:

A belated update... What I'm trying is similar to virtualenv:

My application should not depend on any pre-installed Python and not have any 
influence on it (and it should not modify the registry or the system 
environment variables).

It should be noted that my application is using a different executable instead 
of python.exe.

On Linux, I can do "make altinstall", but on Windows, setting up everything for 
compiling Python is out of scope.

Some of my other programs are using Python 3.5. With its "embeddable zip" it is 
very easy to achieve this goal.

Unfortunately, the most important program is using Python 2 on Windows and 
re-writing it for Python 3 would be quite an effort.

I think I finally found a way now with Python 2.7:

1. Define a directory where Python 2.x should be installed.
   SET PYTHONHOME=....
2. Create that directory
   MKDIR %PYTHONHOME%
3. Run the installer like this:
   msiexec /a python-2.7.12.amd64 /qb TARGETDIR=%PYTHONHOME%
4. Useful: pushd %PYTHONHOME%; python -m ensurepip; popd
5. Copy python 27.dll next to your executable (see 
http://blog.pyspoken.com/2016/04/27/embedding-python-how-to-confuse-python-and-yourself)
 - this is the important step.
   copy /b %PYTHONHOME%\python27.dll %MY_APPLICATION_HOME%\bin\
6. When running your executable, use a script which sets %PYTHONHOME%
   copy /b %PYTHONHOME%\

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue22139>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to