Python プログラムの実行可能ファイルの作成に行き詰まっています。実行可能ファイルを作成するための私のセットアップは次のとおりです。
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 with privileges",
console = console,
options = {'py2exe': {'bundle_files': 1}},
zipfile = None
)
次のようなエラーが表示されます。
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
解決策を探しています。よろしくお願いします。