Discord.py: NameError: name #39;intents#39; is not defined(Discord.py:NameError:未定义名称“意图)
问题描述
我正在尝试在我的机器人中使用意图,但在运行以下代码时:
I'm trying to use intents in my bot but when running the following code:
import discord
from discord.ext import commands
intents = discord.Intents.default()
intents.members = True
bot = commands.Bot(command_prefix=prefix, intent=intents)
我得到错误:
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discor
Traceback (most recent call last):
File "main.py", line 3, in <module>
intents = discord.Intents.default()
AttributeError: module 'discord' has no attribute 'Intents'
我正在运行 Python 3.8.2,但我不知道为什么会这样.任何帮助都将不胜感激(:
I am running Python 3.8.2, and I don't know why this is happening. Any help would be appriceated (:
推荐答案
你很可能没有真正使用 discord.py 1.5.1,你可以在导入后打印 discord.__version__
仔细检查.最佳做法是对包使用 Python venv像这样.此外,为了确保您始终访问正确的 pip,您可以使用 python -m pip
.这意味着您始终将 pip 用于稍后将调用脚本的同一版本.
You are most likely not actually using discord.py 1.5.1, you can print discord.__version__
after importing it to double check. Best practise is to use Python venv for packages like this.
Additionally, to make sure you are always accessing the correct pip, you can use python -m pip
. This means you are always using pip for the same version you will invoke the script with later.
这篇关于Discord.py:NameError:未定义名称“意图"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Discord.py:NameError:未定义名称“意图"


- YouTube API v3 返回截断的观看记录 2022-01-01
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01