I was creating a pull request for Plots.jl when I wanted to test a feature available in a Jupyter notebook. In various ways I tried including the locally developed package into the notebook but I did not succeed. That is I wasn’t able to use the newly exported webm function that worked fine in the regular Julia REPL.
using Pkg
Pkg.develop(PackageSpec(path="../../.julia/dev/Plots")) #doesn't work
# or
#Pkg.add(PackageSpec(path="../../.julia/dev/Plots",rev="webm")) #also doesn't work
using Plots
webm
Example output of that to be seen here:
So how would I go about it? Or what can I do to debug further?