Browse Source
README: replace single quotes with double quotes
Commands may file in certain environments where single and double quotes cannot be used interchangeably.
Fix #390
pull/406/head
Rossen
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
4 deletions
-
README.rst
|
@ -36,7 +36,7 @@ Install latest release version from PYPI: |
|
|
.. code:: bash |
|
|
.. code:: bash |
|
|
|
|
|
|
|
|
# with SteamClient dependecies |
|
|
# with SteamClient dependecies |
|
|
pip install -U 'steam[client]' |
|
|
pip install -U "steam[client]" |
|
|
|
|
|
|
|
|
# without (only when using parts that do no rely on gevent, and protobufs) |
|
|
# without (only when using parts that do no rely on gevent, and protobufs) |
|
|
pip install -U steam |
|
|
pip install -U steam |
|
@ -46,12 +46,12 @@ Installing directly from ``github`` repository: |
|
|
.. code:: bash |
|
|
.. code:: bash |
|
|
|
|
|
|
|
|
# cutting edge from master |
|
|
# cutting edge from master |
|
|
pip install 'git+https://github.com/ValvePython/steam#egg=steam' |
|
|
pip install "git+https://github.com/ValvePython/steam#egg=steam" |
|
|
|
|
|
|
|
|
# specific version tag (e.g. v1.0.0) |
|
|
# specific version tag (e.g. v1.0.0) |
|
|
pip install 'git+https://github.com/ValvePython/steam@v1.0.0#egg=steam[client]' |
|
|
pip install "git+https://github.com/ValvePython/steam@v1.0.0#egg=steam[client]" |
|
|
# without SteamClient extras |
|
|
# without SteamClient extras |
|
|
pip install 'git+https://github.com/ValvePython/steam@v1.0.0#egg=steam' |
|
|
pip install "git+https://github.com/ValvePython/steam@v1.0.0#egg=steam" |
|
|
|
|
|
|
|
|
Vagrant |
|
|
Vagrant |
|
|
------- |
|
|
------- |
|
|