In my tests I run a script in another Julia run("julia myscript.jl")
and my script starts with using Distributions
which gives me a :
ERROR: LoadError: ArgumentError: Module Distributions not found in current path.
How can I make sure that my second Julia process uses the same environment as the main one ?
Thanks.