我正在尝试运行一些代码,有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 websockets
、pip3 install websockets
、python -m pip install websocket-client
和pip install websocket-client
2条答案
按热度按时间jdg4fx2g1#
你运行的是什么版本的pip?
字符串
我刚刚用pip 23.1.2试了
pip install websockets
,它工作得很好。(回答是因为我没有足够的声望来评论)
njthzxwz2#
首先,你使用的是什么操作系统?什么版本的pip?我假设Linux或Mac,因为你提到了pip3。但是pip适用于Windows,pip3适用于Linux。