I am having a problem running my python executable on other machines. It works fine when running it on the machine I build it on. I am compiling the source code into an executable using py2exe. The executable contains chart images produced by ChartDirector's pychartdir. When I try to run my executable on another machine I am receiving the error:
ImportError: Error loading "C:\\exeTest\\dist\\chartdir.dll" [error code = 126]
Can anyone help me with this?
The other machine I am running the executable on does not have Python installed. But, since this is a python executable it shouldn't need python installed.
Exact error traceback:
Traceback (most recent call last):
File "gui.py", line 7, in <module>
File "pychartdir.pyo", line 5, in <module>
File "pychartdir27.pyo", line 12, in <module>
File "pychartdir27.pyo", line 10, in __load
ImportError: Error loading "H:\\HOT test\\dist\\chartdir.dll" [error code = 126] |