How can I use pywin32 with a virtualenv without having to include the host environment's site-packag
Posted
by jkp
on Stack Overflow
See other posts from Stack Overflow
or by jkp
Published on 2009-12-02T02:31:03Z
Indexed on
2010/03/23
14:13 UTC
Read the original article
Hit count: 395
I'm working with PyInstaller under Python 2.6, which is only partially supported due to the mess MS have created with their manifest nonense which now affects Python since it is now MSVC8 compiled.
The problem is that the manifest embedding support relies on the pywin32 extensions in order to build which is a pain because without including the host's site-packages folder when I create the virtualenv (kinda defeats the point in a build environment) I cannot find a way to install the required extensions so they are accessible to PyInstaller.
Has anyone found a solution to this issue?
© Stack Overflow or respective owner