@everywhere push!(LOAD_PATH,modulepath);
Or:
@everywhere begin
modulepath = "/home/me/code/my_modules";
push!(LOAD_PATH,modulepath);
using MyModule
end
Should do the trick.
@everywhere push!(LOAD_PATH,modulepath);
Or:
@everywhere begin
modulepath = "/home/me/code/my_modules";
push!(LOAD_PATH,modulepath);
using MyModule
end
Should do the trick.