Pyinstaller — не удалось выполнить скрипт script.py

#python #tkinter #pyinstaller

#python #tkinter #pyinstaller

Вопрос:

после запуска exe-файла в консоли Windows возникает ошибка:

 Traceback (most recent coll last):
  File "script.py", line 10, in <module>
  File "tkinter__init.py", line 2261, in __init__
_tkinter.TclError: Can't find a usable init.tcl in the following directories:...

This probably means that Tcl wasn't installed properly.
 

как я понимаю, ошибка указывает на 10-ю строку кода в скрипте

строка 10 в script.py:

 root = Tk()
 

это код:
https://github.com/nurikb/tkinter/blob/main/tk_json.py

вот команда pyinstaller:

 pyinstaller.exe script.py -w --icon=favicon.ico