1

And if it doesn't, is there anyway to speed up my python code for accessing pytables on a 64-bit system (so no psyco)?

jab
  • 5,673
  • 9
  • 53
  • 84

2 Answers2

4

There is some support numpy. Running pypy 1.9 I get the following message on importing numpy:

ImportError: The 'numpy' module of PyPy is in-development and not complete. To try it out anyway, you can either import from 'numpypy', or just write 'import numpypy' first in your program and then import from 'numpy' as usual.

Pablo
  • 8,644
  • 2
  • 39
  • 29
0

Nevermind...

https://bitbucket.org/pypy/compatibility/wiki/Home

The answer is no. :(

jab
  • 5,673
  • 9
  • 53
  • 84