diff --git a/sample/Plots.jl.jl b/sample/Plots.jl.jl index 53f1a979dd..68aaf2d25e 100644 --- a/sample/Plots.jl.jl +++ b/sample/Plots.jl.jl @@ -1,21 +1,9 @@ ### A Pluto.jl notebook ### -# v0.14.0 +# v0.11.12 using Markdown using InteractiveUtils -# ╔═╡ aefb6004-f0ff-11ea-10c9-c504c7aa9fe5 -begin - import Pkg - Pkg.activate(mktempdir()) -end - -# ╔═╡ a0f0ae42-9ad8-11ea-2475-a735df64aa28 -begin - Pkg.add("Plots") - using Plots -end - # ╔═╡ 7b93882c-9ad8-11ea-0288-0941e163f9d5 md""" # Plotting in Pluto @@ -30,6 +18,18 @@ Let's start by importing the `Plots` package. We do this in a special way, which # ╔═╡ d889e13e-f0ff-11ea-3306-57491904d83f md"_First, we set up a clean package environment:_" +# ╔═╡ aefb6004-f0ff-11ea-10c9-c504c7aa9fe5 +begin + import Pkg + Pkg.activate(mktempdir()) +end + +# ╔═╡ a0f0ae42-9ad8-11ea-2475-a735df64aa28 +begin + Pkg.add("Plots") + using Plots +end + # ╔═╡ e48a0e78-f0ff-11ea-2852-2f4eee1a7d2d md"_Next, we add the `Plots` package to our environment, and we import it._"