stats package not found in R

3k Views Asked by At

I'm really having problems with RStudio. It had been working fine a few days ago. Then it said I needed the newest version of RTools. I tried to install it but don't think it was successful. However now I can't load anything in R. I am greeted with the following message when launching RStudio:

   Error: package or namespace load failed for ‘stats’ in inDL(x, as.logical(local), as.logical(now), ...):
 unable to load shared object 'C:/Program Files/R/R-3.6.3/library/stats/libs/x64/stats.dll':
  LoadLibrary failure:  The specified module could not be found.

During startup - Warning message:
package ‘stats’ in options("defaultPackages") was not found 
Error in inDL(x, as.logical(local), as.logical(now), ...) : 
  unable to load shared object 'C:/Program Files/R/R-3.6.3/library/stats/libs/x64/stats.dll':
  LoadLibrary failure:  The specified module could not be found.

I have looked up solutions to this problem and people say to delete /Renviron but I don't know will that mess things up even more.

Here are a few results of things I type into R:

> Sys.getenv("PATH")
[1] "C:\rtools40"
> Sys.which("stats.dll")
stats.dll 
       "" 
> Sys.which("make")
make 
  "" 

I really don't understand what has gone wrong. Can anyone help?

2

There are 2 best solutions below

0
On

You accidentally overwrote the PATH envvar. Your line in .Renviron must be: PATH="C:/rtools40/usr/bin;${PATH}" (mind the " and the {}), otherwise you'll lose the R installation path and R will not be able to load the shared library.

1
On

Try adding the following line to the .Rprofile

Sys.setenv(PATH = "C:/Program Files/R/<your version of R>/bin/x64")

The issue seems to result from the R in Rstudio environment cannot find Rblas.dll and Rlapack.dll in the $R_HOME/bin/x64 folder. Copy and paste these two files to where the stats.dll is also work, but I think adding the path is a better solution.