Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 ubuntu 10.10 上安装zmq并安装pyzmq,一切正常。
zmq
pyzmq
在import zmq我收到错误消息时,
import zmq
说明“ ImportError: cannot import name initthreads”
ImportError: cannot import name initthreads
谁能告诉我为什么会这样?
你有类似的问题吗?
https://github.com/zeromq/pyzmq/issues/80
这家伙正在将它导入到 pyzmq 目录中。
激活后立即virtualenv尝试
virtualenv
pip install pyzmq --install-option="--zmq=bundled"
这解决了我遇到的一个非常相似的问题。