Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

installing zeromq under pypy

Tags:

pypy

zeromq

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.

like image 560
Davoud Taghawi-Nejad Avatar asked Aug 06 '12 15:08

Davoud Taghawi-Nejad


1 Answers

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.

like image 64
minrk Avatar answered Jan 03 '23 01:01

minrk