Re: [julia-users] Re: Julia Plugins

2016-06-06 Thread Leonardo
Thanks, but I still have some doubt (inline) Il 06/06/2016 19:29, Uwe Fechner ha scritto: Well, you can load modules on demand in the following way (in this way I load the module PyPlot on demand): eval(Expr(:using, :PyPlot)) OK To load a module from any path, push the directory, where you

[julia-users] Re: Julia Plugins

2016-06-06 Thread Uwe Fechner
Well, you can load modules on demand in the following way (in this way I load the module PyPlot on demand): eval(Expr(:using, :PyPlot)) To load a module from any path, push the directory, where you module lives into the load path: cd("/home/ufechner/00PythonSoftware/FastSim") push!(LOAD_PATH,