Activating environment on multiple SGE_cluster nodes fails

Because with a few workers it was working, I inferred it was a problem of concurrent access; running one activate at time with the following code works.

for worker in workers()
    r = @spawnat worker (Pkg.activate(PATH))
    fetch(r)
end