From cd4b2518073c3453f07ff030cc1679e13f3b5c7c Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Mon, 6 Mar 2023 00:26:29 -0600 Subject: [PATCH] Use single quotes for consistent style --- docs/html/cli/pip_install.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/html/cli/pip_install.rst b/docs/html/cli/pip_install.rst index 44598451af3..0c779124cde 100644 --- a/docs/html/cli/pip_install.rst +++ b/docs/html/cli/pip_install.rst @@ -11,11 +11,11 @@ Usage .. tab:: Unix/macOS - .. pip-command-usage:: install "python -m pip" + .. pip-command-usage:: install 'python -m pip' .. tab:: Windows - .. pip-command-usage:: install "py -m pip" + .. pip-command-usage:: install 'py -m pip' @@ -368,7 +368,7 @@ Examples python -m pip install -e hg+https://hg.repo/some_pkg.git#egg=SomePackage # from mercurial python -m pip install -e svn+svn://svn.repo/some_pkg/trunk/#egg=SomePackage # from svn python -m pip install -e git+https://git.repo/some_pkg.git@feature#egg=SomePackage # from 'feature' branch - python -m pip install -e "git+https://git.repo/some_repo.git#egg=subdir&subdirectory=subdir_path" # install a python package from a repo subdirectory + python -m pip install -e 'git+https://git.repo/some_repo.git#egg=subdir&subdirectory=subdir_path' # install a python package from a repo subdirectory .. tab:: Windows @@ -378,7 +378,7 @@ Examples py -m pip install -e hg+https://hg.repo/some_pkg.git#egg=SomePackage # from mercurial py -m pip install -e svn+svn://svn.repo/some_pkg/trunk/#egg=SomePackage # from svn py -m pip install -e git+https://git.repo/some_pkg.git@feature#egg=SomePackage # from 'feature' branch - py -m pip install -e "git+https://git.repo/some_repo.git#egg=subdir&subdirectory=subdir_path" # install a python package from a repo subdirectory + py -m pip install -e 'git+https://git.repo/some_repo.git#egg=subdir&subdirectory=subdir_path' # install a python package from a repo subdirectory #. Install a package with `extras`_. @@ -425,7 +425,7 @@ Examples .. code-block:: shell python -m pip install SomeProject@http://my.package.repo/SomeProject-1.2.3-py33-none-any.whl - python -m pip install "SomeProject @ http://my.package.repo/SomeProject-1.2.3-py33-none-any.whl" + python -m pip install 'SomeProject @ http://my.package.repo/SomeProject-1.2.3-py33-none-any.whl' python -m pip install SomeProject@http://my.package.repo/1.2.3.tar.gz .. tab:: Windows @@ -433,7 +433,7 @@ Examples .. code-block:: shell py -m pip install SomeProject@http://my.package.repo/SomeProject-1.2.3-py33-none-any.whl - py -m pip install "SomeProject @ http://my.package.repo/SomeProject-1.2.3-py33-none-any.whl" + py -m pip install 'SomeProject @ http://my.package.repo/SomeProject-1.2.3-py33-none-any.whl' py -m pip install SomeProject@http://my.package.repo/1.2.3.tar.gz #. Install from alternative package repositories.