Davoud Taghawi-Nejad
Davoud Taghawi-Nejad

Reputation: 16826

installing zeromq under pypy

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

Answers (1)

minrk
minrk

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

Related Questions