Блин теперь новые костыли….
Не могу сбилдить в один exe файл…
Говорю ему..
from distutils.core import setup
import py2exe
import sys
if not 'py2exe' in sys.argv:
sys.argv.append('py2exe')
options = {"py2exe": {"compressed": 1,
"optimize": 0,
"packages": ["encodings"],
"bundle_files": 1, #comment here and all work
}
}
program = {"script": "script.pyw", }
setup(
author= "topazz",
name = "topazz",
options = options,
windows = [program],
zipfile = None,
#zipfile = "lib/libraries.zip", #try to change this to None
)
Он все билдит но exe не запускается.
Коменчу “bundle_files”: 1 - все ок, только файлов куча
bundle_files“: 1 - не запускается exe
bundle_files”: 2 - не запускается exe
bundle_files": 3 - все ок
Блин не пойму что ему надо
UPD. теперь берем пример из самого py2exe билдим его.. переносим на другой камп .. и ничего не работает (((