How to install discord.py rewrite?

前端 未结 12 1815
小蘑菇
小蘑菇 2020-12-06 18:21

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

12条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-06 18:50

    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. :-)

提交回复
热议问题