Install zeromq under pypy

I installed zeromq under CPython. How can I install it so that it also runs under pypy?

www.zeromq.org/

The problem is that zeromq needs Cython.

+6
source share
1 answer

To work with pypy, you need to use ctypes- based bindings such as pyzmq-ctypes or zmqpy .

2013 update: pyzmq now works with pypy, so you can just pip install pyzmq on pypy.

+8
source

Source: https://habr.com/ru/post/922225/


All Articles