Im creating a executable for my tkinter app, after the build is complete and i click on the exe file i get the following message.
AtrributeError:Type object 'scipy.sparse.csgrap._shortest_path.array' has no attribute 'reduce_cython'
Python: 3.7.3 Cython: 0.29.6
Setup.py
from cx_Freeze import setup, Executable
import os.path
import sys
PYTHON_INSTALL_DIR = os.path.dirname(os.path.dirname(os.__file__))
base = None
if sys.platform == 'win32':
base = "Win32GUI"
executables = [Executable("index.py", base=base)]
include_files = [os.path.join(PYTHON_INSTALL_DIR, 'DLLs', 'tk86t.dll'),
os.path.join(PYTHON_INSTALL_DIR, 'DLLs', 'tcl86t.dll')]
packages = [ "pandas", "ibm_watson", "datetime","sqlalchemy","json","simplejson","nltk"]
options = {
'build_exe': {
'packages':packages,
'include_files': include_files
},
}
setup(
name = "Carrefour Nlc",
options = options,
version = "0.0.1",
description = '<any description>',
executables = executables
)
Traceback
I have no idea how to fix this , i apreciate any help.