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
I believe that discord.py rewrite is officially published based on its formal website information.
so, the command for installing the module will become pretty easy.
pip install discord.py
if you want to install a specific version. (the newest at this point is 1.3.4)
pip install discord.py==1.3.4
if you have an issue with the pip that cmd cannot recognize your pip command, then do this:
py -3 -m pip install discord.py
(but you need to have pip first anyway).
Based on its website, discord.py drops the support of python 3.4, it only supports python 3.5-3.8. Hope these information could help. :-)