From be5d6adc5a5f750eeaa59ecabd760f1fcde47fae Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Mon, 2 May 2022 12:27:56 +0100 Subject: [PATCH] README: add quotes in pip command for zsh users Fix #347 --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index f762763..5583291 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 -------