Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.rst #1

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,27 +35,27 @@ To install the library without full voice support, you can just run the followin
.. code:: sh

# Linux/macOS
python3 -m pip install -U discord.py
python3 -m pip install -U py-cord

# Windows
py -3 -m pip install -U discord.py
py -3 -m pip install -U py-cord

Otherwise to get voice support you should run the following command:

.. code:: sh

# Linux/macOS
python3 -m pip install -U "discord.py[voice]"
python3 -m pip install -U "py-cord[voice]"

# Windows
py -3 -m pip install -U discord.py[voice]
py -3 -m pip install -U py-cord[voice]


To install the development version, do the following:

.. code:: sh

$ git clone https://github.com/Rapptz/discord.py
$ git clone https://github.com/Pycord-Development/pycord
$ cd discord.py
$ python3 -m pip install -U .[voice]

Expand Down