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