gpt4 book ai didi

python - 如何在 cx_freeze 中包含一个文件夹?

转载 作者:IT老高 更新时间:2023-10-28 21:01:46 29 4
gpt4 key购买 nike

我正在使用 cx_freeze 来部署我的应用程序。我想包含整个目录,因为包含单个文件不会将它们放在文件夹中。如何包含文件夹?

最佳答案

您必须为构建选项设置包含文件参数。您可以通过不同的方式执行此操作,但我将展示我的配置的一部分。我在这里描述的是一个特定的文件和一个特定的目的地。我想你也可以设置这样的路径,但我还没有测试过。

编辑:对此进行了测试,因此请为您的项目选择正确的方法。

buildOptions = dict(include_files = [(absolute_path_to_your_file,'final_filename')]) #single file, absolute path.

buildOptions = dict(include_files = ['your_folder/']) #folder,relative path. Use tuple like in the single file to set a absolute path.

setup(
name = "appname",
version = "1.0",
description = "description",
author = "your name",
options = dict(build_exe = buildOptions),
executables = executables)

也看看这个话题。它解决了同样的问题:How can i bundle other files when using cx_freeze?

关于python - 如何在 cx_freeze 中包含一个文件夹?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15079268/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com