I am working on an application which uses Boost.Python to embed the Python interpreter. This is used to run user-generated \"scripts\" which interact with the main program.<
I also had the same problem with embedding Python27.dll
from a C-program using the Universal-CRT.
A
was the offender. And
is off-course in my PATH
. AFAICS the only users of msvcr90.dll
are the PyWin32 modules
.
The fix was just move
to that directory.
PS. PyWin32 still has this as an issue 7 years later!