I ran python3 -m pip install -U discord.py
but it only installed discord.py v0.16.x. How do I install the new discord.py rewrite v1.0?
I uninstalled th
Use:
py -m pip install discord.py
Try Typing py -3.9 -m pip install discord.py[voice] --extra-index-url https://gorialis.github.io/pip/
in your CMD/Terminal.
Open Command Prompt and type in;
pip install discord.py
or;
pip install discord.py==1.0.1
and then if you want voice do;
pip install discord.py[voice]
If you want to upgrade to the most recent version you can use:
pip install discord.py --upgrade
Open CMD and go to the folder of your discord bot eg:
cd C:\Users\max\Desktop\DiscordBot
Next type this in CMD: pip install discord.py
That should work
Try using
pip install -U git+https://github.com/Rapptz/discord.py@rewrite#egg=discord.py[voice]
That should go to the rewrite
branch of the discord.py
repository and get the egg file to install.