How to import a module I created to Pluto?

I have this code:

And I’m trying to import it to Pluto.jl like this:

But it does not work! Could someone help me, please?

the way Pluto implemented causes:
image

so one clean answer is don’t do this, make it a package and ]dev <local path> so you can simply using Cow from anywhere

1 Like

https://github.com/JuliaPluto/PlutoLinks.jl

You cold try this.

I usually do something like this

begin
 import Pkg
 Pkg.activate(temp=true)
 Pkg.dev("path to your pkg")
 using your_pkg
end