Windows 7 x64 上的 PyPy?
我正在尝试在 Windows 7 x64 计算机上使用 PyPy,但没有找到任何方法来做到这一点。 显然有一个 win32 二进制文件,但没有 x64 二进制文件或安装指南。 我目前正在使用Python 2.7.2 win64(Python 2.7.2(默认,2011年6月12日,14:24:46)[MSC v.1500 64位(AMD64)] on win32)。
从源安装出现以下错误:
[翻译:错误] WindowsError:[错误 193] %1 不是有效的 Win32 应用程序
有人有在 win64 上使用 PyPy 的指南/提示吗? 还是根本不可能?
I am trying to use PyPy on a Windows 7 x64 machine but do not find any way to do it.
Apparently there is a win32 binary, but no x64 binary or installation guide.
I am currently using Python 2.7.2 win64 (Python 2.7.2 (default, Jun 12 2011, 14:24:46) [MSC v.1500 64 bit (AMD64)] on win32).
Installation from sources raised the following error:
[translation:ERROR] WindowsError: [Error 193] %1 is not a valid Win32 application
Does anyone have a guide/hint to use PyPy on a win64?
Or is it just not possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
PyPy 与 64 位 Windows 不兼容。主要原因是 sizeof(void*) != sizeof(long) 这有点烦人。非常欢迎您的贡献:)
PyPy is not compatible with 64bit windows. Primary reason is that sizeof(void*) != sizeof(long) which is a bit annoying. Contributions are more than welcome :)
Windows 上没有适用于 64 位 Python 的版本。您似乎有以下选项:
选项 2 看起来更容易处理。
There's no version available for 64 bit Python on Windows. You appear to have the following options:
Option 2 looks more tractable.
如果现在有人读到这个问题,请更新一下:PyPy 似乎已经解决了 Windows x64 的问题,您可以下载 PyPy 的 32 位版本,它将在 Windows 7 x64 下完美运行(我什至有一个 64 位) python 安装在旁边,并且 pypy 运行良好,我只需指定 pypy 的完整路径即可将其用于我需要的脚本)。
Just an update on this issue if anyone read it nowadays: PyPy seems to have solved their issues with Windows x64, you can download the 32-bit version of PyPy and it will work flawlessly under Windows 7 x64 (I even have a 64-bit python install beside, and pypy is working nicely along, I just have to specify the full path to pypy to use it for the scripts I need).
64 位 PyPy 现在支持 Windows。他们写了一篇关于如何最终添加支持的文章 (https://doc. pypy.org/en/latest/windows64.html)。如果您访问他们的下载页面,他们提供 64 位 Windows 下载 (https://www.pypy .org/download.html)。
64-bit PyPy now supports Windows. They wrote a post about how they were finally able to add support (https://doc.pypy.org/en/latest/windows64.html). If you go to their downloads page, they have 64-bit Windows downloads available (https://www.pypy.org/download.html).