Files
openvino/docs/documentation_build_instructions.md
T
Nikolay TyukaevandAndrey Zaytsev 361dec7362 Docs to Sphinx (#8151)
* docs to sphinx

* Update GPU.md

* Update CPU.md

* Update AUTO.md

* Update performance_int8_vs_fp32.md

* update

* update md

* updates

* disable doc ci

* disable ci

* fix index.rst

Co-authored-by: Andrey Zaytsev <andrey.zaytsev@intel.com>
2021-10-24 17:43:00 +03:00

750 B

Build Documentation Using CMake

  1. Clone submodules:
cd openvino
git submodule update --init --recursive
  1. Install build dependencies using the install_build_dependencies.sh script in the project root folder.
chmod +x install_build_dependencies.sh
./install_build_dependencies.sh
  1. Install doxyrest and put the bin folder in your path

  2. Install python dependencies:

python -m pip install -r docs/requirements.txt
  1. Install the sphinx theme

  2. Create a build folder:

mkdir build && cd build
  1. Build documentation using these commands:
cmake .. -DENABLE_DOCS=ON -DENABLE_DOCKER=ON
cmake --build . --target sphinx_docs