Displaying 1 result from an estimated 1 matches for "enabled_env".
2020 Oct 02
0
Unable to compile with R CMD INSTALL on windows when sourcing from Rprofile
...edab282632443219e051e4ade2d1d5bbc671c781051bf1437897cbdfea0f1\\assertthat\\assertthat_0.2.1.tar.gz"
Nothing unusual. I just compile assertthat from targz.
However, I have the following statement in my .Rprofile. (NOTE: .Rprofile, NOT ~/.Rprofile)
print(getwd())
# >>> created by rip
enabled_env <- "default"
source(file.path(".envs", enabled_env, "init.R"))
# <<< created by rip
This init.R file exists and it's correctly sourced, and contains
print('Using environment default')
.libPaths(c('.envs/default/lib'))
The problem occu...