cx_Freeze not able to build msi with pandas
问题 Hi I have following cx_Freeze setup.py file for an application that uses pandas module. When I generate msi I am facing issues. I looked all over the google for this but none of them are working for me. include-files = ['aardvark.dll'] includes = [] excludes = [] base = "Win32GUI" exe = Executable( script="test.py", initScript=None, base=base, targetName="test.exe", copyDependentFiles=True, compress=False, appendScriptToExe=False, appendScriptToLibrary=False, shortcutDir="MyProgramMenu",