Skip to content

Instantly share code, notes, and snippets.

@fonsp
Created August 19, 2020 10:59
Show Gist options
  • Save fonsp/aa4ddf117b3050d818aa090c10354b37 to your computer and use it in GitHub Desktop.
Save fonsp/aa4ddf117b3050d818aa090c10354b37 to your computer and use it in GitHub Desktop.
@info "Welcome to Julia! Let's get started"
@info "Setting up the environment - grab a cup of tea"
import Pkg
# we activate a clean environment called "pluto" - this does not affect the environment that your code runs in
# for using fool-proof package environments inside notebooks, see https://github.com/fonsp/Pluto.jl/issues/142#issuecomment-642049815
Pkg.activate("pluto")
Pkg.Registry.update()
Pkg.add("Pluto")
@info "Launching the notebook - grab a cookie"
import Pluto
Pluto.run()
# Pluto will print the next messages telling you what to do
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment