I've been using Renviron.site to set the R_LIBS_USER path. Now I'd like to share this same folder across several machines so I don't have to maintain multiple sources of packages. I shared a folder using windows SMB and I'm trying the code here:
R_LIBS_USER="//sw20comp02-d/library"
I've tried several variations and they don't work. Here are some:
R_LIBS_USER=//sw20comp02-d/library
R_LIBS_USER=\\\\sw20comp02-d\\library
R_LIBS_USER="//sw20comp02-d/library"
R_LIBS_USER="\\\\sw20comp02-d\\library"
I've found examples where people have similar paths listed, but for some reason it's not working for me.