ksp585
ksp585

Reputation: 1770

blogdown::serve_site() cannot render Rmd file

When I ran blogdown::serve_site(), I get the below error. Could you please help me understand this error and suggest a fix?

> library(blogdown)
> blogdown::serve_site()
Rendering content/post/2015-07-23-r-rmarkdown.Rmd
Error in inDL(x, as.logical(local), as.logical(now), ...) : 
  function 'execLaterNative2' not provided by package 'later'

R version: 3.6.3

R-studio version: 1.3.1073

Upvotes: 0

Views: 155

Answers (1)

ksp585
ksp585

Reputation: 1770

I installed blogdown package directly from github and it worked fine.

remotes::install_github('rstudio/blogdown')

Upvotes: 1

Related Questions