I'd like to use the debugger in Juno. I have multiple files, say file1, file2 and file3, all stored in one directory, say directory1. However, when I try to run the debugger, it claims
ERROR: could not open file /directory2/file3.jl
How come it does not find my files? It runs just fine, without the debugger. Do I need to change some PATH variable (REPL?) or something to tell it where to look for files?
Are you're include
ing those files? If so, that's a bug in Juno's debugger.
Until this is fixed, you can either
include("/foo/bar/baz.jl")
instead of include("baz.jl")
Juno.@enter start()
or the "Run Block" command).