我正在使用:
问题
我正试图在Blogdown建立一个网站。我正在尝试构建的站点是雨果XMin,因为它没有任何修改。我有:
blogdown::build_site(),在Bash中以交互模式进入R后,在站点根文件夹中运行命令R。我得到的错误如下:
> blogdown::build_site()
Rendering content/_index.Rmarkdown
running: bash -c "cd ../..;
find . -not -path '*/exampleSite/*' \\( -name '*.html' -o -name '*.css' \\) | xargs wc -l"
pandoc: Error running filter pandoc-citeproc
pandoc-citeproc not found in path
Error: pandoc document conversion failed with error 83
Execution halted
Warning message:
In file.remove(intermediate_html) :
cannot remove file '_index.tmp.html', reason 'No such file or directory'
Error in render_page(f) : Failed to render 'content/_index.Rmarkdown'在我的Windows机器上,这个工作很好。
发布于 2019-03-16 15:38:48
我被消息骗了,没有看到pandoc-citeproc是必需的,但没有找到。所以解决这个问题很容易:
yum install pandoc-citeprochttps://stackoverflow.com/questions/55198345
复制相似问题