VIDHYARTH T S
VIDHYARTH T S

Reputation: 23

Developing a Julia package using Jupyter Notebook

I have created some functions in Julia, which I am willing to develop into a private package registry. Since all my Julia code is in Jupyter Notebook, is there any way to develop an Julia package entirely using Jupyter Notebook? If so, it would be best if anyone could shed some light on that.

Upvotes: 2

Views: 209

Answers (1)

Mark Kittisopikul
Mark Kittisopikul

Reputation: 586

The Nbdev.jl package aims to facilitate this:

https://sapal6.github.io/Nbdev.jl/tutorial/

I also recommend reading this ongoing thread.

https://discourse.julialang.org/t/transforming-a-pluto-notebook-into-a-julia-package/60789

Upvotes: 5

Related Questions