I recently installed RStudio server on Google Compute Engine and now want to connect to BigQuery. I have successfully installed and loaded packages such as dplyr
and ggplot2
, but failed to load bigrquery
and devtools
. Running the code snippet below:
install.packages("bigrquery")
install.packages('devtools')
devtools::install_github("rstats-db/bigrquery")
results in this error message:
Error in loadNamespace(name) : there is no package called ‘devtools’
Loading bigrquery
separately also results in similar error message:
Error in library(bigrquery) : there is no package called ‘bigrquery’
I noticed that the installation sent message saying dependencies for the package not available. I didn't get this problem installing and loading bigrquery
and devtools
on my RStudio desktop. How can I solve this? I'm working on Windows and launch the RStudio server on Google Chrome.