From e8ab3c307889dbd00ea6f56f9502613fc4a47e7f Mon Sep 17 00:00:00 2001 From: Rossen <2720787+rossengeorgiev@users.noreply.github.com> Date: Wed, 27 Jul 2022 10:03:42 +0300 Subject: [PATCH] README: replace single quotes with double quotes Commands may file in certain environments where single and double quotes cannot be used interchangeably. Fix #390 --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 5583291..8330cbc 100644 --- a/README.rst +++ b/README.rst @@ -36,7 +36,7 @@ Install latest release version from PYPI: .. code:: bash # 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) pip install -U steam @@ -46,12 +46,12 @@ Installing directly from ``github`` repository: .. code:: bash # 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) - 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 - 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 -------