Skip to content

Commit cd4b251

Browse files
Use single quotes for consistent style
1 parent cc2e715 commit cd4b251

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/html/cli/pip_install.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ Usage
1111

1212
.. tab:: Unix/macOS
1313

14-
.. pip-command-usage:: install "python -m pip"
14+
.. pip-command-usage:: install 'python -m pip'
1515

1616
.. tab:: Windows
1717

18-
.. pip-command-usage:: install "py -m pip"
18+
.. pip-command-usage:: install 'py -m pip'
1919

2020

2121

@@ -368,7 +368,7 @@ Examples
368368
python -m pip install -e hg+https://hg.repo/some_pkg.git#egg=SomePackage # from mercurial
369369
python -m pip install -e svn+svn://svn.repo/some_pkg/trunk/#egg=SomePackage # from svn
370370
python -m pip install -e git+https://git.repo/some_pkg.git@feature#egg=SomePackage # from 'feature' branch
371-
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
371+
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
372372
373373
.. tab:: Windows
374374

@@ -378,7 +378,7 @@ Examples
378378
py -m pip install -e hg+https://hg.repo/some_pkg.git#egg=SomePackage # from mercurial
379379
py -m pip install -e svn+svn://svn.repo/some_pkg/trunk/#egg=SomePackage # from svn
380380
py -m pip install -e git+https://git.repo/some_pkg.git@feature#egg=SomePackage # from 'feature' branch
381-
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
381+
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
382382
383383
#. Install a package with `extras`_.
384384

@@ -425,15 +425,15 @@ Examples
425425
.. code-block:: shell
426426
427427
python -m pip install SomeProject@http://my.package.repo/SomeProject-1.2.3-py33-none-any.whl
428-
python -m pip install "SomeProject @ http://my.package.repo/SomeProject-1.2.3-py33-none-any.whl"
428+
python -m pip install 'SomeProject @ http://my.package.repo/SomeProject-1.2.3-py33-none-any.whl'
429429
python -m pip install SomeProject@http://my.package.repo/1.2.3.tar.gz
430430
431431
.. tab:: Windows
432432

433433
.. code-block:: shell
434434
435435
py -m pip install SomeProject@http://my.package.repo/SomeProject-1.2.3-py33-none-any.whl
436-
py -m pip install "SomeProject @ http://my.package.repo/SomeProject-1.2.3-py33-none-any.whl"
436+
py -m pip install 'SomeProject @ http://my.package.repo/SomeProject-1.2.3-py33-none-any.whl'
437437
py -m pip install SomeProject@http://my.package.repo/1.2.3.tar.gz
438438
439439
#. Install from alternative package repositories.

0 commit comments

Comments
 (0)