Offline Defold Manual Setup Linux Debian Guide:

Requirements:
Regular Terminal

sudo apt install python3 -y

sudo apt install python3-pip -y

It will ask you to install 1 more additional thing.

MKDocs:

Right click a folder and click Open Terminal Here
OR
If you use VSCodium
Open the folder where you want the Venv to be created.

python3 -m venv myenv
source myenv/bin/activate

OR

python3 -m venv (test_env1/any name here)
source (test_env1/SAME NAME HERE)/bin/activate

Dark Mode Viewing:
Copy this to your mkdocs.yml
site_name: My Docs
theme:
name: mkdocs
color_mode: dark
nav_style: dark

Copy the docs folder inside the doc-master download,

Paste it in the docs folder where mkdocs.yml(your venv) is located, Done!

Latest requirements for mkdocs can be found here!
How to check your version:
python3 -m pip --version
python3 --version

What is Venv???
venv — Creation of virtual environments — Python 3.14.5 documentation

1 Like