stevengogogo / neurips-quarto-extension

https://stevengogogo.github.io/neurips-quarto-extension/
MIT License
1 stars 1 forks source link

Error executing 'Rscript': program not found #2

Closed TaWeiYeh closed 4 months ago

TaWeiYeh commented 4 months ago

After I ran quarto render reports.qmd --to neurips-html, the following error shows up. Do I need to install Rscript in addition to Quarto?

image

My environment is

  1. Operating system: Windows 10
  2. Program editor: VSCode
  3. Quarto version: quarto-1.4.554-win
TaWeiYeh commented 4 months ago

I fixed the issue after install R (https://cloud.r-project.org/) on my Windows. Subsequently, in the RGui, I installed knitr and rmarkdown packages in R,

install.packages("knitr")
install.packages("rmarkdown")