Few of the packages which my executable script is using are dependent on xlrd module. So I tried to include this module in the setup script by using the include option as shown. But when the runnery.py gives call to package modules, the module is not able to import xlrd though xlrd file are present in the library.zip file.
from cx_Freeze import setup, Executable
import xlrd
buildOptions = dict(
compressed = True,
optimize=2,
path=sys.path+[".\\uitls", “.\\supported”],
include_files=[“Doc"],
includes=[“xlrd”, "win32com"],
packages=["utils", ”supported"],
append_script_to_exe=True,
copy_dependent_files=True,
)
setup(
name = "TestExecutable",
version = "0.1",
options = dict(build_exe = buildOptions),
executables = [Executable(
script=r".\\codebase\\ runner.py",
icon=".\\icon.ico",
base="Win32GUI")]
)
Whereas if I try to import the xlrd in the runner.py, it is being able to import it. I not sure what is going wrong in this case, as the dependent packages are not being able to import xlrd. Is there some option that I am missing or something that I am doing wrong?
Update: I found that the dependent package is called by spawning a process, so it creates a new environment, which do not have the xlrd module loded into it and is not aware of the library.zip containing it. So now, is it somehow possible for me to make the xlrd module available to the package from the zip file even if it ran by spwaning new process? Regards,
includes=[“xlrd”, "win32com"],... Please show the code that you actually ran; don't edit it and don't type it from memory. – John Machin Mar 5 '11 at 8:45