From 4c169b998177e5012c987b51396c6e6e9a6304aa Mon Sep 17 00:00:00 2001 From: Michael Currin <18750745+MichaelCurrin@users.noreply.github.com> Date: Wed, 14 Oct 2020 22:59:32 +0200 Subject: [PATCH] Update installation.md --- docs/tutorial/installation.md | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/docs/tutorial/installation.md b/docs/tutorial/installation.md index abeba70..ac85f8e 100644 --- a/docs/tutorial/installation.md +++ b/docs/tutorial/installation.md @@ -41,17 +41,20 @@ source venv/bin/activate Install dependencies using one of these approaches: - + -- Install directly. - ```bash - pip install mkdocs - ``` -- Create a `requirements.txt` file, add `mkdocs` to it then install from the file. - ```bash - echo 'mkdocs' > requirements.txt - pip install -r requirements.txt - ``` +Install directly. + +```sh +pip install mkdocs +``` + +Create a `requirements.txt` file, add `mkdocs` to it then install from the file. + +```sh +echo 'mkdocs' > requirements.txt +pip install -r requirements.txt +``` ### Install globally