mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-12-24 13:28:13 +08:00
Documentation for DLPack
Building Locally
The following dependencies must be downloaded in order to build docs:
- Doxygen (On debian distros, simply run
sudo apt -y install doxygen) - Python dependencies present in the
doc_requirements.txtfile in the root directory of the project. Runpython3 -m pip install -r doc_requirements.txtto install them.
Once the dependencies are installed, docs can be built using either CMake or the Makefile from the root directory of the project.
- Using Makefile: Run
make docto build the HTML pages. Runmake show_docsto serve the website locally. - Using CMake: Build with
BUILD_DOCSoptionON:mkdir -p build && cd build && cmake .. -DBUILD_DOCS=ON && make