Skip to content Skip to sidebar Skip to footer

How To Install PyInstaller With Portable Python And Movable Python

Portable Python and Movable Python allow programming python without installing anythin, just by unpacking something. :-) I'd like also to be able to create standalone executable fr

Solution 1:

Apparently it can be fixed by changing the order of imports. From the pyinstaller site:

In order to make pywin32 works with portable python pywintypes must be loaded before
any win32 library ....... Swapping the two lines "import win32api" and "import
pywintypes" in bindepend.py (line 44 and 45 on commit 0837e8a....) fixes the issue.

It fixed the same problem for me.


Post a Comment for "How To Install PyInstaller With Portable Python And Movable Python"