-2
我有一個小問題,我的Discord bot是用Python編寫的,而且我不斷收到錯誤。這是我的機器人的代碼:''模塊「PIP安裝期間在Python3.x中找不到」'找不到''
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
和Python 3.7.0a2 64x
我的電腦來自64x位架構,因此它完全匹配。
[Discord PIP Install Error]可能的重複(https://stackoverflow.com/questions/46133128/discord-pip-install-error) – thatrockbottomprogrammer
您確定您的腳本使用了正確的解釋器嗎?當你安裝了幾個Python dists時,看到「ModuleNotFound」很常見。 – lotrus28
Interpeter? DIST?向我解釋:) @ lotrus28 – DeadlyFirex