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
I wanted to build the blueprint of the Equational Theories project.
I followed the leanblueprint README instructions:
leanblueprint
$ sudo apt install graphviz libgraphviz-dev $ pip install leanblueprint
Then I did
$ leanblueprint web
which seemed to succeed (return code was 0). However, when I looked at the generated html files, they were just stubs.
Then I looked in the full console output of the leanblueprint web call, and I found these lines:
leanblueprint web
INFO: Using the imager "gspdfpng". /bin/sh: 1: pdflatex: not found /bin/sh: 1: dvisvgm: not found
Aha, so I needed to install pdflatex. So then I did
pdflatex
$ sudo apt install texlive
and after that, leanblueprint web actually succeeded in building the full web blueprint.
There are two problems here:
texlive
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I wanted to build the blueprint of the Equational Theories project.
I followed the
leanblueprint
README instructions:Then I did
$ leanblueprint web
which seemed to succeed (return code was 0). However, when I looked at the generated html files, they were just stubs.
Then I looked in the full console output of the
leanblueprint web
call, and I found these lines:Aha, so I needed to install
pdflatex
. So then I didand after that,
leanblueprint web
actually succeeded in building the full web blueprint.There are two problems here:
texlive
or similarleanblueprint web
should fail (not just log a message) ifpdflatex
(or whatever other needed tool) is not found.The text was updated successfully, but these errors were encountered: