gpt4 book ai didi

Python Websockets 模块没有属性

转载 作者:太空狗 更新时间:2023-10-29 17:52:54 27 4
gpt4 key购买 nike

我有这个 python 脚本,它向我的 python 服务器发送 WebSocket 消息。但它不断抛出错误。我以前见过这些错误,但我似乎无法修复它。我使用的是 2.7.x 版本。

#!/usr/bin/python
import websocket
import sys
val = sys.argv[1]
ws = websocket.create_connection("ws://ipaddress:9001")
ws.send(val)
ws.close()

错误

Traceback (most recent call last):
File "./test.py", line 5, in <module>
ws = websocket.create_connection("ws://ipaddress:9001")
AttributeError: 'module' object has no attribute 'create_connection'

最佳答案

你安装了错误的库(websocket)尝试安装 websocket-client

$ pip install websocket-client

然后你的代码必须能正常工作

关于Python Websockets 模块没有属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40212252/

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