Python Forum

Full Version: Issues with Exe generation and Packaging dependencies
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
Ive had a lot of issues with py2exe and 64 bit with certain 3rd party libs.

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