1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# sphinx-thebe
[](https://sphinx-thebe.readthedocs.io/en/latest/?badge=latest)
[](https://pypi.org/project/sphinx-thebe)
Integrate interactive code blocks into your documentation with Thebe and Binder.
See [the sphinx-thebe documentation](https://sphinx-thebe.readthedocs.io/en/latest/) for more details!
## Install
To install `sphinx-thebe` first clonse and install it:
```
pip install sphinx-thebe
```
Then, add it to your Sphinx site's `conf.py` file:
```
extensions = [
...
"sphinx_thebe"
...
]
```
See [the sphinx-thebe documentation](https://sphinx-thebe.readthedocs.io/en/latest/) for more details!
|