需要帮助从 python 脚本创建 exe
我想创建我的 python 脚本的 exe 版本,因此我正在使用朋友的计算机进行测试。
该脚本创建一个基本的文本编辑器,可以加载、保存等。 我正在使用 http://www.py2exe.org/ 创建exe。我一直在使用这个教程: http://www.py2exe.org/index.cgi/Tutorial
一切正常我的电脑,但当我尝试在我朋友的电脑上运行它时,出现以下错误:
“此文件的版本与您运行的 Windows 版本不兼容。检查您的计算机系统信息,了解您是否需要该程序的 x86(32 位)或 x64(64 位)版本,以及然后联系软件发行商。”
我有 Windows 7 64 位,我的朋友有 Windows 7 32 位,我希望它与两者兼容。
任何帮助将不胜感激,这是我第一次尝试这样的事情。
谢谢 汤姆
I am wanting to create an exe version of my python script so and I am using a friends computer to test.
The script creates a basic text editor which can load, save etc.
I am using http://www.py2exe.org/ to create the exe. and I have been using this tutorial:
http://www.py2exe.org/index.cgi/Tutorial
Everything works fine on my computer but when I try to run it on my friends computer I get this error:
"The version of this file is not compatible with the version of Windows youre running. Check your computers system information to see wether you need an x86 (32-bit) or x64 (64-bit) version of the program, and then contact the software publisher."
I have windows 7 64bit and my friend has windows 7 32bit I want it to be compatible with both.
Any help would be apreciated this is my first time trying anything like this.
Thanks
Tom
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以构建 x86 和 x64(32 位和 64 位)版本,也可以仅构建 32 位版本。
32 位版本可在 64 位和 32 位 Windows 系统上运行。
You can either build both an x86 and x64 (32-bit and 64-bit) version, or you can build it only as a 32-bit version.
The 32-bit version will run on both 64-bit and 32-bit Windows systems.