Error in loadNamespace(name) : there is no package called 'RInside'

后端 未结 3 1032
轻奢々
轻奢々 2020-12-02 02:42

Error in loadNamespace(name) : there is no package called \'Rcpp\' ... Error in loadNamespace(name) : there is no package called \'RInside\'

I get the above

3条回答
  •  难免孤独
    2020-12-02 02:57

    I was also having the same problem and read Dirk's reply and just ran

     install.packages("Rcpp", dependencies = TRUE)
     install.packages("RInside", dependencies = TRUE)
    

    and it is working fine now.

提交回复
热议问题