Форум сайта python.su
есть некоторый setup.py:
from distutils.core import setup
import py2exe
import sys
# no arguments
if len(sys.argv) == 1:
sys.argv.append("py2exe")
# creates a standalone .exe file, no zip files
setup( options = {"py2exe": {"compressed": 1, "optimize": 1, "ascii": 1, "bundle_files": 1}},
# replace myFile.py with your own code filename here ...
console = [{"script": 'exe.py'}] )
from django.core.management import setup_environ
import settings
setup_environ(settings)
print "hello!!!"
input()
Офлайн
“bundle_files”: 1 попробуй убрать, с этой опцией не всегда корректно exe работает
Офлайн