如何在为 python3 构建 cxfreeze 之前设置 python 框架路径
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您的 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.