Skip to content

Commit e8ab3c3

Browse files
authoredJul 27, 2022
README: replace single quotes with double quotes
Commands may file in certain environments where single and double quotes cannot be used interchangeably. Fix #390
1 parent bf3cb33 commit e8ab3c3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎README.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Install latest release version from PYPI:
3636
.. code:: bash
3737
3838
# with SteamClient dependecies
39-
pip install -U 'steam[client]'
39+
pip install -U "steam[client]"
4040
4141
# without (only when using parts that do no rely on gevent, and protobufs)
4242
pip install -U steam
@@ -46,12 +46,12 @@ Installing directly from ``github`` repository:
4646
.. code:: bash
4747
4848
# cutting edge from master
49-
pip install 'git+https://github.com/ValvePython/steam#egg=steam'
49+
pip install "git+https://github.com/ValvePython/steam#egg=steam"
5050
5151
# specific version tag (e.g. v1.0.0)
52-
pip install 'git+https://github.com/ValvePython/steam@v1.0.0#egg=steam[client]'
52+
pip install "git+https://github.com/ValvePython/steam@v1.0.0#egg=steam[client]"
5353
# without SteamClient extras
54-
pip install 'git+https://github.com/ValvePython/steam@v1.0.0#egg=steam'
54+
pip install "git+https://github.com/ValvePython/steam@v1.0.0#egg=steam"
5555
5656
Vagrant
5757
-------

0 commit comments

Comments
 (0)
Please sign in to comment.