MkDocs installation
How to install and run MkDocs locally.
Installing python and pip
To install MkDocs, you need to install pip and python. To check if python is installed type python --version in the terminal. If python is not installed, install it from here.
To check if pip is installed type pip --version in the terminal. If pip is not installed, install it from here.
Installing MkDocs
Open mkdocs folder in terminal and run the following commands (The installation has to be done only once):
- pip install mkdocs
- pip install mkdocs-material
Runing MkDocs locally
To run mkdocs locally, run the following command in the mkdocs folder: mkdocs serve.