Pycord not even installing after following quickstart guide.
py-cord package is installed.
import discord
import os
client = discord.Bot()
@client.event
async def on_ready():
print(f'We have logged in as {client.user}')
@client.slash_command(guild_ids=[860169374278352906])
async def hello(ctx):
await ctx.respond("Hello!")
token = os.environ['token']
client.run(token)