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:未定义名称“意图"


基础教程推荐
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 包装空间模型 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01