I want to import and use functions, structs, and modules from my local julia project under active development named MyProject.jl.
If I cd to my project directory, then activate the project, then call jupyter notebook and run:
include("../src/MyProject.jl")
using .MyProject
I can use the project objects normally. But if I make a change to the project files the change is not reflected in jupyter. It seems to require a kernel restart. Is there any way around this?