无法使用 cx_freeze 和 PySide2 进行编译

Unable to compile with cx_freeze and PySide2

我有一个 python 程序,我正在尝试用 cx_freeze 编译。我使用的 GUI 是 PySide2。

我试过包括 PySide2,这里是排除它,但我总是得到同样的错误。下面是我的 setup.py 代码

from cx_Freeze import setup, Executable
import sys


includefiles = ['README.md', 'debug.log','tcl86t.dll', 'tk86t.dll', 'field.jpg', 'inputClass.py', 'mainfile.qml', 'MyTabView.qml', 'PlayerSelection.qml', 'selectedPlayers.py', 'Settings.qml', 'SimOutput.qml', 'simulationOutput.py']

includes = ["idna.idnadata", "atexit"]

excludes = ["PySide2"]

import os

os.environ['TCL_LIBRARY'] = r'C:\Users\pimat\AppData\Local\Programs\Python\Python36\tcl\tcl8.6'
os.environ['TK_LIBRARY'] = r'C:\Users\pimat\AppData\Local\Programs\Python\Python36\tcl\tk8.6'


setup(name = "Simulation",
      version = "0.2",
      description = "Optimization Simulator",
      options = {'build_exe':{'includes':includes,'excludes':excludes,'include_files':includefiles}},
      executables = [Executable("main.py")])

程序编译正常,但是当 运行 exe 时,出现以下错误:

"ModuleNotFoundError: No module named 'PySide2'"

所以错误是我安装了 cx_freeze 和 python 3.6,但我所有的包都在 python 3.7 文件夹中。我只是简单地复制并粘贴到3.6文件夹中并稍微更改了代码,并且exe运行良好。

from cx_Freeze import setup, Executable
import sys


# dependencies
build_exe_options = {
    "packages": ["os", "sys", "re", "idna.idnadata", "atexit", "PySide2.QtCore", "PySide2.QtWidgets", "PySide2.QtUiTools", "PySide2.QtQuick", "PySide2.QtQml", "PySide2.QtGui", "shiboken2"],
    "include_files": ['README.md', 'debug.log','tcl86t.dll', 'tk86t.dll', 'field.jpg', 'inputClass.py', 'mainfile.qml', 'MyTabView.qml', 'PlayerSelection.qml', 'selectedPlayers.py', 'Settings.qml', 'SimOutput.qml', 'simulationOutput.py',
               ], 
    "excludes": ["Tkinter", "Tkconstants", "tcl", ],
    "build_exe": "build",
    #"icon": "./example/Resources/Icons/monitor.ico"
}

executable = [
    Executable("main.py",
               base="Win32GUI",
               targetName="Simulation.exe"
               )
    ]



setup(name = "Simulation",
      version = "0.2",
      description = "Simulator",
      options={"build_exe": build_exe_options},
      executables=executable
      )

这是一个愚蠢的错误,但我犯了更糟的错误