Created
August 19, 2020 10:59
-
-
Save fonsp/aa4ddf117b3050d818aa090c10354b37 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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