AttributeError: module 'discord' has no attribute 'Bot'
AttributeError: module 'discord' has no attribute 'Bot'
当我 运行 我的代码出现此错误时:
File "main.py", line 16, in <module>
bot = discord.Bot(command_prefix = "lol");
AttributeError: module 'discord' has no attribute 'Bot'
我也不完全确定我必须更改什么才能使其达到 运行。有人碰巧知道该怎么做吗?
如果您尝试使用命令扩展,则需要将 from discord.ext import commands
放在代码的顶部。然后,将 discord.Bot
更改为 commands.Bot
.
当我 运行 我的代码出现此错误时:
File "main.py", line 16, in <module>
bot = discord.Bot(command_prefix = "lol");
AttributeError: module 'discord' has no attribute 'Bot'
我也不完全确定我必须更改什么才能使其达到 运行。有人碰巧知道该怎么做吗?
如果您尝试使用命令扩展,则需要将 from discord.ext import commands
放在代码的顶部。然后,将 discord.Bot
更改为 commands.Bot
.