How is the instantiation of an environment handled in multiple-worker settings? Should I run
using Distributed
@everywhere begin
using Pkg
Pkg.activate(".")
end
? I do seem to get some warning messages about access to caches during pre-compilation and such. Should then the activation of the environment be performed only on the process 1?