creating an executable of a python application using py2exe -


i'm stuck creating executable of python program. setup creating executable shown below,

from distutils.core import setup import py2exe, sys, os  sys.argv.append('py2exe') project = dict(script="smarttester.py",       dest_base="smart tester",       uac_info="requireadministrator") console = [project]  setup(     version = "1.0.0",     description = "executable privileges",     console = console,     options = {'py2exe': {'bundle_files': 1}},     zipfile = none      ) 

i'm receiving error showing as,

 traceback (most recent call last):      file "c:\mypath\to\createexe.py", line 14, in <module>          options = {'py2exe': {'bundle_files': 1}},      file "c:\python27\lib\distutils\core.py", line 162, in setup           raise systemexit, error  systemexit: error: msvcp90.dll: no such file or directory 

looking solution.thanks in advance.


Comments