Skip to content

Setting Up MkDocs Locally

1. Create a Python Virtual Environment

python3 -m venv .venv
source .venv/bin/activate

2. Install MkDocs and Other Dependencies

pip install -r requirements.txt

3. Build the Documentation

mkdocs build

4. Serve Documentation Locally

mkdocs serve

Visit http://127.0.0.1:8000 in your browser to view your site.