Error in value[[3L]](cond) : Package ‘Rcpp’ - with shiny app deployment

I encountered the same issue using my company's shiny server. It happens because when the R session starts on the server, it loads shiny library first which depends on some other libraries, and this leads to that Rcpp of the version in the global environment on the server is loaded before any code in my shiny project gets run. When my code gets called, it cannot unload the older version of Rcpp and load the new version which it can find in my local library. I understand that packrat does isolation, but I'm not sure will it avoid this unloading package problem? Thanks!

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.