Closed milescsmith closed 5 years ago
I too was getting the
Error in lib_paths(lib, make_path = TRUE, ask = ask) : The paths '-1' are not writeable`
error. Looking at shelf(), it appears that the lib argument has the default value of calling lib_paths(), so that you get
shelf()
lib
lib_paths()
lib_paths(lib = lib_paths())
As far as I can tell, setting the default value of lib to NULL has the same effect, but avoids the error.
NULL
I too was getting the
error. Looking at
shelf()
, it appears that thelib
argument has the default value of callinglib_paths()
, so that you getAs far as I can tell, setting the default value of
lib
toNULL
has the same effect, but avoids the error.