gpt4 book ai didi

python - python 代码没有名为 zmq 的模块

转载 作者:太空宇宙 更新时间:2023-11-03 19:00:25 25 4
gpt4 key购买 nike

当我尝试运行此脚本时

# -*- coding: utf-8 -*- 

#
# Hello World client in Python
# Connects REQ socket to tcp://localhost:5555
# Sends "Hello" to server, expects "World" back
#


import zmq

context = zmq.Context()

# Socket to talk to server
print "Connecting to hello world server…"
socket = context.socket(zmq.REQ)
socket.connect ("tcp://localhost:5555")

# Do 10 requests, waiting each time for a response
for request in range (10):
print "Sending request ", request,"…"
socket.send ("Hello")

# Get the reply.
message = socket.recv()
print "Received reply ", request, "[", message, "]"

当我这样做时 - python peer.py

我收到ImportError:没有名为 zmq 的模块

但是我已经使用 easy_install pyzmq 安装了 Zeromq 的 Python 绑定(bind)。如何检查绑定(bind)是否安装正确?

最佳答案

尝试“python -v peer.py” - 这应该显示正在搜索模块的路径。您可以在 Linux 上使用 strace 获得类似的结果,但在这种情况下 python -v 更具针对性。

还要考虑您的系统上有多个 Python 的可能性 - 如果您使用的是带有 bash 的 Linux,“type -all python”可能会提供信息。

关于python - python 代码没有名为 zmq 的模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16182473/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com