We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sphinx
mkdocs
In the given pyproject.toml-file sphinx is used for generating documentation:
pyproject.toml
sphinx
docs = [ "sphinx==4.2.0", "sphinx-rtd-theme==1.0.0", ]
Later, however, during the documentation examples, mkdocs is used instead:
We will focus on MkDocs as it is easier to use and provides most of the functionality that we need.
As this is not among the requirements defined earlier, running mkdocs with the command given in the notebook
mkdocs serve --dev-addr=0.0.0.0:8000
Proposed solution: Adding mkdocs instead of sphinx in pyproject.toml, or running pip install mkdocs in addition.
mkdoc
pip install mkdocs
The text was updated successfully, but these errors were encountered:
yakutovicha
No branches or pull requests
In the given
pyproject.toml
-filesphinx
is used for generating documentation:Later, however, during the documentation examples,
mkdocs
is used instead:As this is not among the requirements defined earlier, running
mkdocs
with the command given in the notebookProposed solution:
Adding
mkdoc
s instead ofsphinx
inpyproject.toml
, or runningpip install mkdocs
in addition.The text was updated successfully, but these errors were encountered: