Skip to content

Commit be5d6ad

Browse files
README: add quotes in pip command for zsh users
Fix #347
1 parent 7aef9d2 commit be5d6ad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
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/[email protected]#egg=steam[client]
52+
pip install 'git+https://github.com/ValvePython/[email protected]#egg=steam[client]'
5353
# without SteamClient extras
54-
pip install git+https://github.com/ValvePython/[email protected]#egg=steam
54+
pip install 'git+https://github.com/ValvePython/[email protected]#egg=steam'
5555
5656
Vagrant
5757
-------

0 commit comments

Comments
 (0)