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?
PyPy comes in two versions: one is fully compatible with Python 2.7; the other is fully compatible with one 3. x version.
PyPy is a drop-in replacement for the stock Python interpreter, CPython. Whereas CPython compiles Python to intermediate bytecode that is then interpreted by a virtual machine, PyPy uses just-in-time (JIT) compilation to translate Python code into machine-native assembly language.
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 :)
There's no version available for 64 bit Python on Windows. You appear to have the following options:
Option 2 looks more tractable.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With