You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not strictly an issue; I just thought this may be useful to others. Also not an expert in Julia so if there's an easier way to do this please do correct the script.
I wanted to access the notebooks offline but due to Pluto installing packages per notebook, each notebook must be instantiated while having internet access. This script does that for every notebook in the notebooks directory in the Spring21 branch:
using Glob
import Pluto
import Pkg
functionmain()
dirs =glob("./week*/*.jl")
for jl_file in dirs
println(jl_file)
Pluto.activate_notebook_environment(jl_file)
Pkg.instantiate()
endendmain()
The text was updated successfully, but these errors were encountered:
Not strictly an issue; I just thought this may be useful to others. Also not an expert in Julia so if there's an easier way to do this please do correct the script.
I wanted to access the notebooks offline but due to Pluto installing packages per notebook, each notebook must be instantiated while having internet access. This script does that for every notebook in the
notebooks
directory in theSpring21
branch:The text was updated successfully, but these errors were encountered: