Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit ae6f46ac authored by Jason Kridner's avatar Jason Kridner
Browse files

Add venv-build-env.sh

```shell-session
$ source ./venv-build-env.sh
$ cd projects/librobotcontrol/docs
$ doxygen
$ cd ../../..
$ sphinx-build -M html . public
```
parent 5248014e
Branches
No related merge requests found
#!/bin/sh
# Source this script
if [ ! -e ./sphinx-env ]; then
python3 -m venv sphinx-env
fi
source ./sphinx-env/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install sphinx==5.3.0 sphinx-rtd-theme sphinx_design sphinx-tabs sphinxcontrib.svg2pdfconverter sphinx-reredirects
python3 -m pip install sphinxcontrib-images
python3 -m pip install breathe exhale
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment