Installation
How to install and set up fr-docs.
Prerequisites
- Python >= 3.14
- pip
Install from PyPI
Standard installation
pip install fr-docs
Install in a virtual environment
uv venv
uv pip install fr-docs
Install a specific version
pip install fr-docs==1.0.0
Install from Source
Clone and install
git clone https://github.com/Omena0/fr-docs.git
cd fr-docs
pip install -e .
Project Setup
- Create a
config.jsonindocs/ - Add your documentation markdown files in
docs/src/ - Run
fr-docs build - Serve files in
docs/site
Project structure example
my-project/
├── my_module/
├── docs/
│ ├── src/
│ │ └── index.md
│ └── config.json
└── pyproject.tomlVerify Installation
fr-docs --help
Expected output should show the available commands and options.
Upgrade
pip install --upgrade fr-docs
Uninstall
pip uninstall fr-docs