Skip to content

Files

Latest commit

8936a5a · Mar 31, 2025

History

History
This branch is 105 commits behind isaac-sim/IsaacLab:main.

docs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Oct 18, 2024
Oct 18, 2024
Jan 30, 2025
Mar 31, 2025
Oct 18, 2024
Oct 18, 2024
Mar 10, 2025
Mar 3, 2025
Oct 18, 2024
Oct 18, 2024

Building Documentation

We use Sphinx with the Book Theme for maintaining and generating our documentation.

Note: To avoid dependency conflicts, we strongly recommend using a Python virtual environment to isolate the required dependencies from your system's global Python environment.

Current-Version Documentation

This section describes how to build the documentation for the current version of the project.

Linux
# 1. Navigate to the docs directory and install dependencies
cd docs
pip install -r requirements.txt

# 2. Build the current documentation
make current-docs

# 3. Open the current docs
xdg-open _build/current/index.html
Windows
:: 1. Navigate to the docs directory and install dependencies
cd docs
pip install -r requirements.txt

:: 2. Build the current documentation
make current-docs

:: 3. Open the current docs
start _build\current\index.html

Multi-Version Documentation

This section describes how to build the multi-version documentation, which includes previous tags and the main branch.

Linux
# 1. Navigate to the docs directory and install dependencies
cd docs
pip install -r requirements.txt

# 2. Build the multi-version documentation
make multi-docs

# 3. Open the multi-version docs
xdg-open _build/index.html
Windows
:: 1. Navigate to the docs directory and install dependencies
cd docs
pip install -r requirements.txt

:: 2. Build the multi-version documentation
make multi-docs

:: 3. Open the multi-version docs
start _build\index.html