1
0
Fork 0
forked from github/pelican

Use more reliable installation command in docs

Some shell environments may interpret brackets as glob patterns.
Wrapping the argument in quotation marks should help ensure correct
behavior in those environments. Refs #2786
This commit is contained in:
Justin Mayer 2020-08-17 06:45:38 +02:00
commit d473dbfdaf
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ You can install Pelican via several different methods. The simplest is via
Or, if you plan on using Markdown:: Or, if you plan on using Markdown::
pip install pelican[Markdown] pip install "pelican[markdown]"
(Keep in mind that operating systems will often require you to prefix the above (Keep in mind that operating systems will often require you to prefix the above
command with ``sudo`` in order to install Pelican system-wide.) command with ``sudo`` in order to install Pelican system-wide.)
@ -46,7 +46,7 @@ Optional packages
If you plan on using `Markdown <https://pypi.org/project/Markdown/>`_ as a If you plan on using `Markdown <https://pypi.org/project/Markdown/>`_ as a
markup format, you can install Pelican with Markdown support:: markup format, you can install Pelican with Markdown support::
pip install pelican[Markdown] pip install "pelican[markdown]"
Or you might need to install it a posteriori:: Or you might need to install it a posteriori::

View file

@ -11,7 +11,7 @@ Install Pelican (and optionally Markdown if you intend to use it) on Python
2.7.x or Python 3.5+ by running the following command in your preferred 2.7.x or Python 3.5+ by running the following command in your preferred
terminal, prefixing with ``sudo`` if permissions warrant:: terminal, prefixing with ``sudo`` if permissions warrant::
pip install pelican[Markdown] pip install "pelican[markdown]"
Create a project Create a project
---------------- ----------------