Current Path In Julia V0.7

Hi,
I am added my library to juliarc.jl using

@everywhere push!(LOAD_PATH,"/home/Denis/src")

but when i try to use it using MyLib, it gives me the following error:

using Denis.Trace
ERROR: ArgumentError: Module Denis not found in current path.
Run `Pkg.add("Denis")` to install the Denis package.
Stacktrace:
 [1] require(::Module, ::Symbol) at ./loading.jl:864

What is wrong? It doesn’t do this with v0.6.
Thanks

If your module is in /home/Denis/src/Denis.jl, then /home should be what you push to the path, right?

2 Likes