dev
dev

Reputation: 123

shiny causes RStudio to crash

I am trying to use shiny for the first time. Every time when I am trying to run sample shiny app RStudio crashes with fatal error. The error which I am getting is :

Error in withCallingHandlers(tracatch(evalq(funtion (hash=TRUE, parent=parent.frame(), :
object '.rcpp_warning_recorder' not found.

I am using R version 3.1.2 (2014-10-31) -- "Pumpkin Helmet". Can someone please help?

Upvotes: 12

Views: 2675

Answers (1)

Yihui Xie
Yihui Xie

Reputation: 30124

Try to reinstall Rcpp:

install.packages('Rcpp')

Upvotes: 17

Related Questions