Error control in scientific modelling
MATH-500
Getting started: Installing Julia To be able to fo...
This page is part of the content downloaded from Getting started: Installing Julia To be able to fo... on Wednesday, 25 December 2024, 18:23. Note that some content and any files larger than 50 MB are not downloaded.
Description
Getting started: Installing Julia
To be able to follow this class and complete the homeworks, you need a working installation of the Julia programming language. To install Julia on your computer, take a look at the installation notes of MIT's computational thinking class or watch: How to install Julia and Pluto
Essentially this boils down to:
- Download Julia for your operating system from https://julialang.org/downloads
- Start Julia, e.g. by starting the Julia 1.10 from your program menu or by executing juliain a Terminal.
- Install Pluto, the notebook environment that we will are using in this course. Note, that Pluto is not the only way you can run Julia, but it is particularly well-suited for the quick and interactive experiments we will perform. To install Pluto run in your Julia REPL:
import Pkg
Pkg.add("Pluto")
- Run Pluto: Still in the REPL execute
import Pluto
Pluto.run()
See the installation notes of MIT's computational thinking class for more details.