You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/README
+10-7Lines changed: 10 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -14,19 +14,22 @@ Currently VTR's documenation is automatically built by https://readthedocs.org/p
14
14
How to build documentation
15
15
--------------------------
16
16
17
-
To build the documentation locally you need sphinx installed:
17
+
To build the documentation locally you need to to install Doxygen (Optional) and the python dependencies. You can use your distribution's package manager to install Doxygen. Ubuntu and Debian users can use the following command:
18
18
19
-
For ubuntu/debian based systems:
19
+
$ sudo apt install doxygen
20
20
21
-
$ apt-get install python-sphinx
21
+
While Fedora and RHEL users can use the following command:
22
22
23
-
To properly build citations and the bibliography, we use the sphinxcontrib-bibtex extension:
23
+
$ sudo dnf install doxygen
24
24
25
-
$ pip install sphinxcontrib-bibtex
25
+
You can install python dependencies by fist optionally making a virtual environment:
26
26
27
-
To install all the python requirements:
27
+
$ python -m venv .venv
28
+
$ source .venv/bin/activate
28
29
29
-
$ pip install -r requirements.txt
30
+
And then using the requirements file to install the dependencies:
0 commit comments