Tout est dans le titre " Quelle version de cx_freeze pour python 3.4.3 ? "
Je souhaite créer un exécutable avec cx_freeze d'une petit bout de code qui utilise tkinter.

Le programme se lance correctement au double clic sur MonProgramme.py

A la compilation avec cx_freese j'ai ce message
running build
running build_exe
Stamped: build\exe.win-amd64-3.4\MonProgramme.exe
Missing modules:
? _dummy_threading imported from dummy_threading
? ce imported from os
? doctest imported from heapq
? getopt imported from base64, quopri
? org.python.core imported from copy
? os.path imported from os
? posix imported from os
? pwd imported from posixpath
? subprocess imported from os
This is not necessarily a problem - the modules may not be needed on this platform.
Je considère qu'elle se fait bien mais lorsque je lance l'exe, j'ai ce message :
Traceback (most recent call last):
File"C:\Python34\lib\site-package\cx_Freeze\initscripts\Console.py", line 27, in <module>
exec(code_m.__dict__)
File "MonProgramme.py" line 5, in <module>
File "C:\Python\64-bit\3.4\lib\importlib\_bootstrap.py", line 2214, in _find_and_load
File "C:\Python\64-bit\3.4\lib\importlib\_bootstrap.py", line 2203, in _find_and_load_unlocked
File "C:\Python\64-bit\3.4\lib\importlib\_bootstrap.py", line 1191, in _load_unlocked
File "C:\Python\64-bit\3.4\lib\importlib\_bootstrap.py", line 1161, in _load_backward_compatible
AttributeError:'module' object has no attribute '_fix_up_module'
mes outils :
  • Win7 pro
  • python-3.4.3.amd64
  • pywin32-219.win-amd64-py3.4
  • PyQt5-5.4.1-gpl-Py3.4-Qt5.4.1-x64
  • cx_Freeze-4.3.3.win-amd64-py3.4

note : python est installé sous C:\Python34\

Une idée pour résoudre ce crash de l'exécutable ?