“ModuleNotFoundError:没有名为“websockets”的模块

t9aqgxwy  于 2023-08-05  发布在  其他
关注(0)|答案(2)|浏览(594)

我正在尝试运行一些代码,有import websocket。但是,我得到了一个错误:

ModuleNotFoundError: No module named 'websocket'

字符串
因此,从我在这里找到的其他问题/答案中,在我的cmd中,我运行了pip install websocket,然后在第一个没有运行时也运行了pip install websocket-client
我的Python代码从以下import语句开始:

import discord
from discord import app_commands
from discord.ext import commands
import json
import random
import time
import asyncio
import websockets
import threading
import os
from enum import Enum
from discord import Button, ButtonStyle
import requests


我得到的错误:

C:\Users\jvall\Downloads\psx-gambling-bot-mai2\psx-gambling-bot-main>main.py
Traceback (most recent call last):
  File "C:\Users\jvall\Downloads\psx-gambling-bot-mai2\psx-gambling-bot-main\main.py", line 16, in <module>
    import websockets
ModuleNotFoundError: No module named 'websockets'

C:\Users\jvall\Downloads\psx-gambling-bot-mai2\psx-gambling-bot-main>


我试过pip install websocketspip3 install websocketspython -m pip install websocket-clientpip install websocket-client

jdg4fx2g

jdg4fx2g1#

你运行的是什么版本的pip?

pip --version

字符串
我刚刚用pip 23.1.2试了pip install websockets,它工作得很好。
(回答是因为我没有足够的声望来评论)

njthzxwz

njthzxwz2#

首先,你使用的是什么操作系统?什么版本的pip?我假设Linux或Mac,因为你提到了pip3。但是pip适用于Windows,pip3适用于Linux。

相关问题