-
Notifications
You must be signed in to change notification settings - Fork 1
Deploy package
Enric Ribera Borrell edited this page Aug 31, 2022
·
2 revisions
# open julia
$ julia
# go to REPL mode (read, evaluate, print, loop)
julia> ]
# activate environment
pkg> activate .
# install packages following own manifest file
pkg> instantiate
# import revise package
julia> using Revise
# include module (changes in module are automatically synchronized)
julia> includet("src/logvar.jl")