python - ImportError: DLL load failed: The specified module could not be found -
python - ImportError: DLL load failed: The specified module could not be found -
i have created python application using py2exe. when run exe/application on build environment, works properly. when seek run on clean machine, gives me error that,
traceback (most recent phone call last): file "wx\_misc.pyc", line 1358, in notify file "wx\_core.pyc", line 14771, in notify file "invesalius.py", line 174, in startup file "gui\frame.pyc", line 30, in <module> file "constants.pyc", line 25, in <module> file "project.pyc", line 31, in <module> file "vtk\__init__.pyc", line 43, in <module> file "vtkiopython.pyc", line 12, in <module> file "vtkiopython.pyc", line 10, in __load importerror: dll load failed: specified module not found. traceback (most recent phone call last): file "wx\_misc.pyc", line 1358, in notify file "wx\_core.pyc", line 14771, in notify file "invesalius.py", line 82, in startup2 attributeerror: 'splashscreen' object has no attribute 'control' traceback (most recent phone call last): file "invesalius.py", line 197, in onclose attributeerror: 'splashscreen' object has no attribute 'fc'
i using: 1. windows 8.1 rtm(64 bit) 2. python (2.7 amd64) 3. py2exe (0.6.10a1)
any comments appreciated...
sounds need python runtime on target machine. error message give more info missing dll? if there no farther information, there dependency walker programme (depends.exe) may help identify missing dll.
python py2exe
Comments
Post a Comment