I'm trying to execute some R scripts from an existing .net (C#) program and I get an error localy :
Error: le package 'stats' ne peut être chargé
This error in french means 'stats' package can't be loaded.
Few more information on the issue :
- The project (and scripts) run well on our azure VM
- Scripts run well when running from my local R installation, not when executing them from our project.
- Some other libs were missing (forecast for instance) which I installed using install.packages("forecast").
- Our project is running scripts on a local R installation through R.NET wrapper
- Tryed R.NET 1.6.5 and R 3.2.1 (which are the same deployed on our prod vm) and R 3.2.2, no success
- I did not modify anything in the source code
- R_HOME seems OK, it points to R install directory
I found this question (Upgrading to R 2.15.2 can't load stats package) which does not seems to be the same issue
Any solution to the issue or any hint to understand and correct whan happen is welcome.
Thanks