如何在为 python3 构建 cxfreeze 之前设置 python 框架路径

发布于 2024-09-07 21:25:33 字数 124 浏览 5 评论 0原文

我正在使用 setup.py 文件构建 python 脚本。在构建过程中,它链接到python框架。我想更改链接框架路径,因为它链接到错误的位置。 如何在构建脚本之前设置框架路径。

预先感谢您为这个话题花费宝贵的时间。

I m building a python script using a setup.py file. In building process, it links to python framework. I want to change the linking framework path as its linking to the wrong location.
How to set the framework path before building the script.

Thanks in advance for sparring ur valuable time for this thread.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初雪 2024-09-14 21:25:35

确保您的 cxFreexe 安装并使用与运行要冻结的应用程序相同的 python 运行。这样你的 PYTHONPATH 应该设置正确。

例外情况是您想要冻结自身的脚本修改了 Python 路径。在这种情况下,您需要在冻结之前自己进行相同的修改。

Make sure your cxFreexe is installed with and run with the same python as you run the application you want to freeze. That way your PYTHONPATH should be set up correctly.

The exception is if the script you want to freeze itself modifies Python path. In that case you need to make the same modifications yourself before freezing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文