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
Try:
pip install -U git+https://github.com/Rapptz/discord.py@rewrite#egg=discord.py[voice]
Or:
python -m pip install discord.py
If you are using PyCharm I think you should use the 2nd one
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. :-)
Easy, open Command Prompt and type "pip install discord.py" If you do that you're most probably going to want "pip install requests" If the pip command doesn't work, open your python installer and make sure to click on the add to evironment variables option! That's all your good to go! Use Visual Studio Code or Atom, they are the best so far that I have used for my bot!
Go to python.org and click on download python.
Now, open and run it. Make sure you add python to the path. Click on Install. Once installed you can close it.
Go to git-scm.com and click on Download for Windows.
Once installed open it. Make sure Use git from windows command prompt
is selected.
Then after clicking on next on everything, click on install.
Once install is finished, hit finish.
Copy your script address. In my case, it was Local//Programs//Python//Python39//Scripts
Open your command prompt and type cd Local//Programs//Python//Python39//Scripts
. Paste your address there, mine will not work for you. Hit Enter.
Then type py -3 -m pip install -U discord.py
. Hit enter again. Once the install is finished close the command prompt.
Now you are ready to go ;)
Make sure Python is in your system PATH.
python -m pip install -u discord.py
Or if not work:
python3 -m pip install -U https://github.com/Rapptz/discord.py/archive/rewrite.zip#egg=discord.py[voice]