commit | ff37f754d20143e1e919f805700a2edfb81f0397 | [log] [tgz] |
---|---|---|
author | Davide Pesavento <davidepesa@gmail.com> | Tue Sep 19 21:28:27 2023 -0400 |
committer | Davide Pesavento <davidepesa@gmail.com> | Tue Sep 19 21:28:27 2023 -0400 |
tree | 228eed6e56580131de6ee6c7c8e34885814f0e65 | |
parent | 0b7577433808d9932457dc77ca2c94b134213996 [diff] |
Update dependencies Change-Id: I482416c8a0f6ee06a58cac7d418dacd237981c78
This repository contains the base packet format specification of the Named Data Networking (NDN) protocol.
An HTML version of the specification can be viewed online at https://docs.named-data.net/NDN-packet-spec/.
To "compile" the specification in HTML format, you must first install the Sphinx documentation generator and a few other dependencies. To do so, first make sure that the following packages are installed and up to date:
For instance, on Ubuntu Linux you can use the following commands:
sudo apt install make python3-pip python3 -m pip install -U pip
On other operating systems, you can either use your preferred package manager or follow pip's installation instructions.
Finally, run:
python3 -m pip install -r requirements.txt
to install the recommended version of Sphinx and its dependencies.
Just type:
make html
And a set of HTML pages will be generated inside _build/html
.
You can also type:
make latexpdf
Sphinx will generate a .tex
file and will try to compile it into a PDF document using latexmk
and pdflatex
(which must be installed). If successful, the final .pdf
file can be found in _build/latex
.
For further options, type make help
.