Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 846 Bytes

File metadata and controls

56 lines (35 loc) · 846 Bytes

Guide to run this documentation locally

1. Create a Virtual Environment

Run the following command in your project directory:

python -m venv venv

This will create a folder named venv containing the virtual environment.


2. Activate the Virtual Environment

To start using the virtual environment:

  • On macOS/Linux:

    source venv/bin/activate
  • On Windows (Git Bash):

    source venv/Scripts/activate

3. Install Dependencies

If you have a requirements.txt file in your project:

pip install -r requirements.txt

4. Serve the Mkdocs locally

mkdocs serve

This will start the mkdocs server

5 ( Optional ). Deactivate the Virtual Environment

When finished working, you can exit the environment with:

deactivate