We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After clean install (install R and mvtnorm)
import Pkg ENV["R_HOME"] = "C:\\Program Files\\R\\R-4.4.0" Pkg.build("RCall")
call R
using RCall R"library(mvtnorm)"
and have
ERROR: REvalError: Error: package or namespace load failed for 'mvtnorm' in inDL(x, as.logical(local), as.logical(now), ...): unable to load shared object 'C:/Program Files/R/R-4.4.0/library/stats/libs/x64/stats.dll': LoadLibrary failure: �� ������ ��������� ������.
From R console library(mvtnorm) works fine.
library(mvtnorm)
The text was updated successfully, but these errors were encountered:
What happens if you force a reinstall from within RCall?
julia> using RCall julia> R"""install.packages("mvtnorm")"""
Sorry, something went wrong.
No branches or pull requests
After clean install (install R and mvtnorm)
call R
and have
From R console
library(mvtnorm)
works fine.The text was updated successfully, but these errors were encountered: