Skip to content
Discussion options

You must be logged in to vote

Hey @MinusOneTwelfth-1! As far as I can tell, include[t]ing things in Pluto can get a bit dicey sometimes. When I get to the stage of working with modules, I usually just turn what I am working on into a package, which makes a lot of really nice things automatically available, such as the Revise.jl workflow. Using your example above, I would do something like the following:

1. Create a skeleton package

PkgTemplates.jl is awesome for this, and super customizable:

pkg> add PkgTemplates
julia> using PkgTemplates
julia> Template(dir=".")("MyPkg") # This assumes you have your global git configured already

2. Add Revise.jl globally

(or just to your new package, up to you)

pkg> add Revise 

3. Fi…

Replies: 2 comments 3 replies

Comment options

You must be logged in to vote
1 reply
@MinusOneTwelfth-1
Comment options

Answer selected by MinusOneTwelfth-1
Comment options

You must be logged in to vote
2 replies
@icweaver
Comment options

@floswald
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants