I have problems freezing my program. I narrowed it to a lean module. The program I'm trying to freeze is as follows:
from scipy import signal signal.hann(1000)
My setup script:
import sys from cx_Freeze import setup, Executable build_exe_options = {} base = None if sys.platform == "win32": base = "Win32GUI" setup( name = "Some name", version = "1.0", author="My name", description = "My GUI application!", options = {"build_exe": build_exe_options}, executables = [Executable("Script_Name.py", base=base)]) # ^CHANGE THIS NAME!!!
Here is the image of the error message . I also tried to include scipy.signal in the installation file as
build_exe_options = {"includes":"scipy.signal"}
but it was of no use. Please help me.
source share