>From the 'Writing R Extensions' manual:
R CMD check and R CMD build run R with
--vanilla, so none of the user's startup files are read. If
you need R_LIBS set (to find packages in a non-standard library)
you will need to set it in the environment.
so 'the problem' is your not readin
I have been bitten by this myself. For that reason I have stopped
using .Renviron.
I believe the behavior is the same under Linux and Windows, so I
think you might have a different setup on the two machines.
You can fix it by explicitly setting
R_LIBS
as an environment variable or by putti
Dear developers,
I am writing a package that depends on some other packages. The
dependencies are stated in the `description' file under "Depends". They
are installed in my private library, which is pointed to by setting
R_LIBS in .Renviron, and are available if R is started normally.
However, whe