Using pyinstaller in parmap causes a tplinter matplotlib import error. What for?

Update

If I try to downgrade from Pyinstaller 3.2 to 3.1, I get the following trace when I try to run the executable.

enter image description here

I tried adding --hidden-import=collect_submodules('pkg_resources._vendor')to pyinstaller, as noted here, but that did not affect. The same mistake. This is due to a problem with setuptools. I am using 26.0.0. Lowering to 19.3, that many sources say that the problem really fixes this problem, but then I return to the problem that I have below.


I have a python 2.7 pyqt4 project that I am trying to convert to .exe using pyinstaller. I use:

pyinstaller --additional-hooks-rir=. --clean --win-private-assemblies pipegui.py

pipegui.py can be found on github here

, . , , pyinstaller . , . , , "Poolworker-X" , :

enter image description here

, tkinter , , "tkinter" ( pyqt4). matplotlib, pipegui.py my main script:

    from Tkinter import * 
    import Tkinter
    import FileDialog

, ( , ) , :

enter image description here

- pyinstaller . , , , 3 . .

pyinstaller --additional-hooks=. --clean --win-private-assemblies --hidden-import=Tkinter pipegui.py, . , tkinter . ?

, , , - , parmap . , matplotlib, parmap, .

, , , , matplotlib tkinter , , niether?

  • --clean --win-private-assemblies error code 14001
0
1

Repiklis . , 15 2017 Pyinstaller 3.2.1. , , this , . , .

0

All Articles