Python Forum
[WxPython] Issues with Exe generation and Packaging dependencies - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: [WxPython] Issues with Exe generation and Packaging dependencies (/thread-6456.html)



Issues with Exe generation and Packaging dependencies - Ravikumar - Nov-23-2017

Using PyCharm IDE, I have a Python application written in 2.7 and uses Wxpython,PyWin, WinPaths. I am generating the exe using py2exe and used Inno set up for the packaging. Everything worked fine for Windows 7 32-bit.

Now want to migrate the code to Windows 7/10 64 bit and also from Python 2.7 to 3.4. Modified the code for Python 3.4 but facing issues in generating exe using py2exe. Have a problem with depedency libaries and the exe is throwing errors for missing modules.

Am i even on the right path ? Can anyone guide me on the approach to be followed. I see that the earlier win32 version used to work well and generate a bdist.win32 folder in the build folder. I do not see that anymore with my new code ;-(. Am i missing something very basic.


RE: Issues with Exe generation and Packaging dependencies - metulburr - Nov-23-2017

Ive had a lot of issues with py2exe and 64 bit with certain 3rd party libs.

try pyinstaller
http://www.pyinstaller.org/