如何在 Glitch.com 上创建和使用 Python 3.7?我创建了一个项目。默认 Python 版本较旧。
我使用这些文件在 Glitch 上运行 Python:
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix="bot.")
@bot.event
async def on_ready():
print("Bot ready!")
bot.run("TOKEN_HERE")
python main.py
discord.py==1.2.3