-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
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
Issues building site with fresh repository clone on MacOS #166
Comments
Since this website is rarely updated, we haven't documented everything, sorry about that. About the first issue, I agree that these requirements should be listed.
I don't have a macOS env and I cannot confirm what's command correct here, but indeed Could you open a PR to document them? |
Still need to mention Python requirement in the README I would think. Will open a pull request for that today. |
I got this error on a clean
EDIT: Ha, it needs an OS pandoc ( |
Context and potential pip-based solution: https://stackoverflow.com/questions/62398231/building-docs-fails-due-to-missing-pandoc |
Hey there,
Submitted a pull request here: #165, but getting the site built wasn't as straightforward as the
README
currently suggests.The first of my issues is that running
make page
results in the following error:ModuleNotFoundError: No module named 'pandocfilters'
. What theREADME
does not inform would-be contributors of is that the following prerequisites need to be met:pandocfilters
module is installed globallyI would suggest updating the
README
to let people know Python is required and subsequently looking into virtual environments to both version control the list of necessary packages, and enable modifying theMakefile
to instantiate the virtual environment before running thepage
target.I am assuming development has only happened on Linux machines, as after fixing the
pandocfilters
issue, runningmake page
results in the following error:from this line in
Makefile
.cp
seems to behave differently on BSD/MacOS or something. I had to change the command to the following for the build to succeed:cp -R assets out
So making sure this is a cross-platform compatible operation would be helpful. I believe this variation on the command works on both MacOS and Linux.
The text was updated successfully, but these errors were encountered: