How to create and use Python 3.7 on Glitch.com? I created a project. Default Python version is old.
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
Try changing python
in start.sh to python3
.
They seem to have recently updated the default Python 3 version to 3.7.