Is it possible to build exe on Vista and deploy on XP using py2exe

Posted by dfens on Stack Overflow See other posts from Stack Overflow or by dfens
Published on 2011-01-08T18:13:56Z Indexed on 2011/01/08 23:53 UTC
Read the original article Hit count: 192

Filed under:
|
|
|

I have created some program using python on Windows Vista. But I want to deploy it on Windows XP. Is it necessary to make new build on windows XP? Or there is possibility to make build that will work on both of these systems?

EDIT (EDIT 2 - very simple program does not work also): My setup:

from distutils.core import setup
import py2exe

setup(console=['orderer.py'])

Using dependency explorer i checked that dependencies are:

msvcr90.dll
kernel32.dll
  +ntdll.dll

© Stack Overflow or respective owner

Related posts about python

Related posts about windows-vista