I have installed R(x64) in my system with extra libraries. I have setup the path in environment variables for both R as well as Rserve(one of the few extra library that was downloaded) No when I open up my command prompt and enter R, it accepts the command but when I enter Rserve to check, it shows "R.dll is missing". I have tried reinstalling the R package but the same error pops up every time.
Asked
Active
Viewed 5,867 times
1 Answers
3
The reason which cause the problem is that Windows can not locate R.dll
.
Try add R.dll
to your system path, two steps may work out:
- create system variable
R_HOME
, e.g.R_HOME = D:\R\R-3.2.5\bin;
- add
R.dll
topath
:path = %R_HOME%\x64;%OTHER_DEPENDENCIES%;

xtluo
- 1,961
- 18
- 26