The static version (with no interactive elements) of Pluto notebook with BandPyrometry.jl usage and main ideas description is available at: bandpyrometry_test_git.html, pdf version is available at:bandpyrometry_test_git.pdf .
The static version of Planck.jl testing Pluto notebook is available at :planck_test_git.html, pdf version is available at:planck_test_git.pdf .Notebook file withBandPyrometry.jl
usage examples are available at Pluto notebooks.To run these notebooks, you need:
- Install
julia
language itself from its official download page - Install Pluto notebook from
julia
REPL by entering the following commands line-by-line:
import Pkg
Pkg.add("Pluto")
using Pluto
Pluto.run()
The last line will launch the Pluto starting page in your default browser
- Copy/Clone the entire GitHub repository to your local folder. As far as
BandPyrometry.jl
is not a registered package, all files needed to run the notebooks must be in the../src
folder with respect tonote_book_name.jl
file location. - Open notebook's
.jl
- file inPluto
by providing the full path to the "Open a notebook" text field onPluto
's starting page. As far asPluto
has its own package manager, it will automatically install all necessary dependancies, which are marked inusing
cell of this file.