Windows 7 x64 上的 PyPy?

发布于 2024-12-07 12:18:51 字数 344 浏览 4 评论 0原文

我正在尝试在 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 技术交流群。

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

发布评论

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

评论(4

浪荡不羁 2024-12-14 12:18:51

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 :)

喜你已久 2024-12-14 12:18:51

Windows 上没有适用于 64 位 Python 的版本。您似乎有以下选项:

  1. 将源代码下载到 PyPy 并将其移植到 64 位。
  2. 切换到 32 位 Python。

选项 2 看起来更容易处理。

There's no version available for 64 bit Python on Windows. You appear to have the following options:

  1. Download the source to PyPy and port it to 64 bit.
  2. Switch to 32 bit Python.

Option 2 looks more tractable.

ι不睡觉的鱼゛ 2024-12-14 12:18:51

如果现在有人读到这个问题,请更新一下: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).

找个人就嫁了吧 2024-12-14 12:18:51

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).

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