我有一个小问题,我的Discord bot是用Python编写的,我一直都会遇到错误。这是我的机器人的代码:
import discord
import asyncio
client = discord.Client()
@client.event
async def on_ready():
print('Logged in as')
print(client.user.name)
print(client.user.id)
print('------')
@client.event
async def on_message(message):
if message.content.startswith('!test'):
await client.send_message(message.channel, 'Calculating messages...')
client.run('You arent gonna get my token =D')
当我运行它时会出现这个错误:
Traceback (most recent call last):
File "C:\Users\DELL\Documents\Testing\discordbt.py", line 1, in <module>
import discord
ModuleNotFoundError: No module named 'discord'
我真的不知道该怎么做,我所做的只是CMD中的以下命令:
pip install discord.py
pip install asyncio
就是这样,我确保安装的模块没有错误,他们做了,一切都已经完成,我知道你需要一些其他的“程序”,我已经安装了以下程序:Python 3.6.3 64x
和{ {1}}
我的电脑采用64x位架构,因此完全匹配。
答案 0 :(得分:1)
pip可能正在将外部目录中的模块安装到运行脚本的python版本中。尝试通过将版本号附加到终端命令{1 python3.6 -m pip install discord.py
来指定python版本。如果不起作用,请尝试使用pip3
代替pip
。
编辑:也不要尝试安装asyncio
,它是标准库的一部分。