错误 cx_freeze 没有名为 'ttkwidgets' 的模块

error with cx_freeze No module named 'ttkwidgets'

我想冻结我的程序,但是当我这样做并启动 .exe 时,我收到以下消息

No module named 'ttkwidgets'

这里是安装文件

import sys
from cx_Freeze import setup, Executable

base = None
if sys.platform == 'win32':
    base = 'Win32GUI'

options = {
    'build_exe': {
        'includes': 'atexit'
    }
}

executables = [
    Executable('BouclePrincipale.py', base="Win32GUI")
]

setup(name='simple_Tkinter',
      version='0.1',
      description='Sample cx_Freeze Tkinter script',
      executables=executables
      )

好吧,我下载了ttkwidgets文件夹,然后手动放入文件夹Lib。 在那之后我有很多其他错误(抱歉我没有写错误)但我不得不在脚本中添加

from tkinter import font 
from tkinter import filedialog

在那之后我遇到了 PIL 和图像的问题,然后我就这样做了

python -m pip install --upgrade pip 
python -m pip install --upgrade Pillow

当我冻结我的程序时,它正在工作