rinside

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

空扰寡人 提交于 2019-11-26 14:51:49
问题 Error in loadNamespace(name) : there is no package called 'Rcpp' ... Error in loadNamespace(name) : there is no package called 'RInside' I get the above error when trying make on the examples of RInside. RInside is in the user-library. So I set R_LIBS_USER to the directory in the Makefile. R_LIBS_USER := "C:/users/Me/Documents/R/win-library/3.0" but that does not work either. Thanks for any advice. EDIT: It works fine if the packages are in "C:/R/R-3.0.2/library". R_LIBS_USER doesn't seem to

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

本小妞迷上赌 提交于 2019-11-26 10:59:07
问题 I am trying to embed RInside to my application on win7 64-bit system but when I initialize an RInside: Rin = new RInside(argc, argv); the following message appears: Error in loadNamespace(name) : there is no package called \'Rcpp\' This error only occurs with Windows. 回答1: I think you get that issue when your .libPaths() differ--in other words run the .libPaths() function to see the paths stored by R for its use. Then check where RInside is installed, and make sure Rcpp is installed there too