I have a tkinter
app that I am compiling to an .exe
via py2exe
.
In the setup file, I have set it to include lxml
, urllib
, lxml.html
, ast
, and math
.
When I run python setup.py py2exe
in a CMD console, it compiles fine. I then go to the dist
folder It has created, and run the .exe
file.
When I run the .exe
I get this popup window.this http://gyazo.com/02fc6000c94c165a696d5072738c676d.png
I then procede to open the Trader.exe.log
file, and the the contents say the following;
Traceback (most recent call last): File "Trader.py", line 1, in <module> File "lxml\html\__init__.pyc", line 42, in <module> File "lxml\etree.pyc", line 12, in <module> File "lxml\etree.pyc", line 10, in __load File "lxml.etree.pyx", line 84, in init lxml.etree (src\lxml\lxml.etree.c:190292) ImportError: cannot import name _elementpath
Included here is a copy of my setup.py
file.
Please help me find the problem here. Thanks in advance.