Sto provando a usare cx-freeze per creare una distribuzione statica e autonoma della mia app (The Spye Python Engine, www.spye.dk), tuttavia, quando eseguo cx-freeze , si dice:cx-freeze non riesce a includere i moduli anche se incluso nello specifico
Missing modules:
? _md5 imported from hashlib
? _scproxy imported from urllib
? _sha imported from hashlib
? _sha256 imported from hashlib
? _sha512 imported from hashlib
? _subprocess imported from subprocess
? configparser imported from apport.fileutils
? usercustomize imported from site
Questo è il mio setup.py:
#!/usr/bin/env python
from cx_Freeze import setup, Executable
includes = ["hashlib", "urllib", "subprocess", "fileutils", "site"]
includes += ["BaseHTTPServer", "cgi", "cgitb", "fcntl", "getopt", "httplib", "inspect", "json", "math", "operator", "os", "os,", "psycopg2", "re", "smtplib", "socket", "SocketServer", "spye", "spye.config", "spye.config.file", "spye.config.merge", "spye.config.section", "spye.editor", "spye.framework", "spye.frontend", "spye.frontend.cgi", "spye.frontend.http", "spye.input", "spye.output", "spye.output.console", "spye.output.stdout", "spye.pluginsystem", "spye.presentation", "spye.util.html", "spye.util.rpc", "ssl", "stat,", "struct", "subprocess", "sys", "termios", "time", "traceback", "tty", "urllib2", "urlparse", "uuid"]
includefiles=[]
excludes = []
packages = []
target = Executable(
# what to build
script = "spye-exe",
initScript = None,
#base = 'Win32GUI',
targetDir = r"dist",
targetName = "spye.exe",
compress = True,
copyDependentFiles = True,
appendScriptToExe = False,
appendScriptToLibrary = False,
icon = None
)
setup(
version = "0.1",
description = "No Description",
author = "No Author",
name = "cx_Freeze Sample File",
options = {"build_exe": {"includes": includes,
"excludes": excludes,
"packages": packages
#"path": path
}
},
executables = [target]
)
prega di notare che ho chiaramente specificare i moduli mancanti nella lista include.
Come posso risolvere questo problema?
Giusto, ora l'ho risolto, ma ho ancora lo stesso elenco di moduli mancanti. Come risolvere? – ervingsb
Ho aggiornato il mio setup.py qui: http://paste.adora.dk/P2357.txt, e l'output di "python setup.py build | grep -A12 mancante" è qui: http: //paste.adora .dk/P2356.txt – ervingsb
Ho solo cercato su Google il tuo problema e sembra correlato a [libcrypto] (http://www.mail-archive.com/[email protected]/msg00664.html) (comunque non c'era soluzione) - forse cx_freeze non gestisce le dipendenze non python? – BergmannF