Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/advrhumanoids/rosendeffectordocs
Sphinx (with readthedocs theme) documentation for ROSEndEffector package
https://github.com/advrhumanoids/rosendeffectordocs
Last synced: 2 days ago
JSON representation
Sphinx (with readthedocs theme) documentation for ROSEndEffector package
- Host: GitHub
- URL: https://github.com/advrhumanoids/rosendeffectordocs
- Owner: ADVRHumanoids
- Created: 2020-04-27T12:10:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-11-29T02:45:09.000Z (12 months ago)
- Last Synced: 2023-11-29T03:44:06.985Z (12 months ago)
- Size: 9.46 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ROSEndEffectorDocs
The rendered documentation is visible at https://advrhumanoids.github.io/ROSEndEffectorDocs/This repository contains the source of the documentation of [ROSEndEffector](https://github.com/ADVRHumanoids/ROSEndEffector) package and related packages.
Built with Sphix and readthedocs theme
### To compile locally
- Prerequisite
~~~bash
sudo apt-get install python3-sphinx
sudo python -m pip install sphinx_rtd_theme
sudo python3 -m pip install sphinx-copybutton
~~~- Compile locally:
~~~bash
cd [...]/ROSEndEffectorDocs/docs
make html
~~~
### Troubleshoot
If something like :
```
make html
sphinx-build -b html -d build/doctrees source build/html
Running Sphinx v4.1.2
WARNING: sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0Theme error:
no theme named 'sphinx_rtd_theme' found (missing theme.conf?)
Makefile:56: recipe for target 'html' failed
make: *** [html] Error 2
```
happens, I solved installing the rtd_theme also for python3:
```
pip3 install sphinx-rtd-theme
```