error: object '.doSnowGlobals' not found?

前端 未结 4 701
既然无缘
既然无缘 2021-01-05 01:34

I\'m trying to parallelize a code on 4 nodes(type = \"SOCK\"). Here is my code.

library(itertools)
library(foreach)
library(doParallel)
library(parallel)

wo         


        
4条回答
  •  离开以前
    2021-01-05 01:57

    A specific case of @Steve Weston's answer is when your workers aren't able to load a given package (eg doParallel) because the package is inside a Packrat project. Install the packages to the system library, or somewhere else that a worker will be able to find them.

提交回复
热议问题