Closed HenrikBengtsson closed 2 years ago
From https://github.com/HenrikBengtsson/future/discussions/566#discussioncomment-1802928:
cl <- makeClusterPSOCK(1L, rscript_libs = "\\\\home.ser.ver.com/path/4.1")
ends up trying to set .libPaths("\\home.ser.ver.com/path/4.1")) on the cluster node rather than .libPaths("\\\\home.ser.ver.com/path/4.1")). Note how \\\\ becomes \\.
.libPaths("\\home.ser.ver.com/path/4.1"))
.libPaths("\\\\home.ser.ver.com/path/4.1"))
\\\\
\\
Confirmed to work, cf. https://github.com/HenrikBengtsson/future/discussions/566#discussioncomment-1805261
From https://github.com/HenrikBengtsson/future/discussions/566#discussioncomment-1802928:
ends up trying to set
.libPaths("\\home.ser.ver.com/path/4.1"))
on the cluster node rather than.libPaths("\\\\home.ser.ver.com/path/4.1"))
. Note how\\\\
becomes\\
.