How to create a personal package

I want to create a package with some functions for personal use only.

Currently what I’m using a .jl file inside my project folder and calling include("PersonalFunctions.jl") at the begging of my code.

I would like to use import PersonalFunctions and use it in any project. How can I do it?

https://pkgdocs.julialang.org/v1/creating-packages/

Following this should do.

3 Likes