Reputation: 16826
I have installed zeromq under CPython. How can I install it that it runns also under pypy?
www.zeromq.org/
The problem is it that zeromq needs Cython.
Upvotes: 6
Views: 1837
Reputation: 38668
To work with pypy, you need to use a ctypes-based binding, such as pyzmq-ctypes or zmqpy.
2013 Update: pyzmq works with pypy now, so you can just pip install pyzmq
on pypy.
Upvotes: 8