RStudio:Pandoc.exe已停止工作(错误5)

时间:2018-04-03 14:32:33

标签: r rstudio r-markdown pandoc ioslides

我只是尝试编写一个非常简单的.Rmd文档,输出设置为isoslides;但是我在使用pandoc时遇到错误(错误5)。

---
title: "Test"
date: "April 3, 2018"
output: ioslides_presentation
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```

## Slide with R Output

```{r cars, echo = TRUE}
summary(cars)
```

当我选择“Knit”时,我会弹出一个弹出框:

enter image description here

还有一些错误消息:

output file: delete.knit.md

"C:/Users/myusername/AppData/Local/Pandoc/pandoc" +RTS -K512m -RTS delete.utf8.md --to html4 --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash --output delete.html --email-obfuscation none --self-contained --variable transition=0.4 --template "C:\Users\myusername\Documents\R\win-library\3.4\rmarkdown\rmd\ioslides\default.html" --include-in-header "C:\Users\myusername\AppData\Local\Temp\RtmpmEmO8h\rmarkdown-str17e07fd6873.html" --mathjax --variable "mathjax-url:https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" 
"C:/Users/myusername/AppData/Local/Pandoc/pandoc" +RTS -K512m -RTS delete.utf8.md --to ioslides_presentation.lua --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash --output "C:\Users\newtoner\AppData\Local\Temp\RtmpmEmO8h\ioslides-output17e0613812ce.html" --slide-level 2 
Error: pandoc document conversion failed with error 5
In addition: Warning message:
running command '"C:/Users/myusername/AppData/Local/Pandoc/pandoc" +RTS -K512m -RTS delete.utf8.md --to ioslides_presentation.lua --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash --output "C:\Users\myusername\AppData\Local\Temp\RtmpmEmO8h\ioslides-output17e0613812ce.html" --slide-level 2' had status 5 
Execution halted

我尝试使用devtools重新安装rmarkdown软件包,重新启动计算机,然后在谷歌上搜索...没有运气。如果我可以提供帮助,我宁愿不重新安装RStudio。

我的会话信息:

sessionInfo()
R version 3.4.1 (2017-06-30)
Platform: i386-w64-mingw32/i386 (32-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1

Matrix products: default

locale:
[1] LC_COLLATE=English_Canada.1252  LC_CTYPE=English_Canada.1252    LC_MONETARY=English_Canada.1252 LC_NUMERIC=C                   
[5] LC_TIME=English_Canada.1252    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

loaded via a namespace (and not attached):
 [1] Rcpp_0.12.15     digest_0.6.15    withr_2.1.1.9000 rprojroot_1.3-2  R6_2.2.2         backports_1.1.2  magrittr_1.5     git2r_0.12.1    
 [9] evaluate_0.10.1  httr_1.3.1       stringi_1.1.6    curl_3.1         rmarkdown_1.9.8  devtools_1.13.2  tools_3.4.1      stringr_1.3.0   
[17] yaml_2.1.18      compiler_3.4.1   memoise_1.0.0    htmltools_0.3.6  knitr_1.20      

1 个答案:

答案 0 :(得分:0)

我尝试以管理员身份运行RStudio,并重新安装rmarkdown软件包以及其他一些东西。

我不想重新安装RStudio,因为我的网络速度非常慢(1.5小时下载.exe)。我最终不得不卸载RStudio。我也卸载了Pandoc(这是V2.1.1),然后重新安装了RStudio。

现在有效。感叹!