Cannot install NBInclude

Hello,
I’ve got a large program to write in Julia in Jupyter notebooks; so I’d like to split the code over various notebooks.
It looks as though I would be able to manage this with the NBInclude package; except I don’t get it to work (on two different systems). https://github.com/stevengj/NBInclude.jl

System 1:
Julia 1.4.1
with IJulia
on VSCode running in Ubuntu via WSL2 on windows-machine

System 2:
AWS sagemaker:
Julia 1.0.4
IJulia

in both cases when running:

import Pkg; 
Pkg.add("NBinclude")

I get the error

The following package names could not be resolved:
 * NBinclude (not found in project, manifest or registry)
Please specify by known `name=uuid`   

Documentation mentions that it’s for all Julia versions when using IJulia, so I assumed this should work fine?

Did you try:

import Pkg; 
Pkg.add("NBInclude")

instead?

wow, can’t believe I missed that; thanks!

1 Like