On the pypy functions page:
PyPy 1.9 implements Python 2.7.2 and runs on Intel x86 (IA-32) and x86_64, with ARM and PPC. It supports all core languages by passing the Python test suite.
This means that almost any code written in Python 2.7 will work. The only exceptions worth mentioning are some python extensions written in C, such as numpy .
Installation should be quite simple, you can download a Linux file here . Then just remove the interpreter. From now on, you can run your python programs, similar to how you run them using a regular python interpreter.
On the command line instead:
python my_program.py
Using:
path/to/where/you/installed/pypy my_program.py
Examples of how / why you can use pypy, see this video from PyCon 2012.
source share