reload / autoload module in jupyter notebook with julia kernel -
in jupyter python kernel, there nice reloading feature (%load_ext autoreload %autoreload 2
) re-import saved changes notebook's imported sub-modules (as seen here).
how can julia kernel? is, how can re-include myfile.jl
automatically each time save myfile.jl
, in:
using dataframes include("myfile.jl") ...automatically reload...
i tried using reload("myfile.jl")
command here, didn't seem work me.
Comments
Post a Comment