General setup for running julia code/scripts
In order to directly run julia code/scripts on your pc, follow the instructions below. This can be done before or even directly during the lessons, since installation is almost immediate (at least in case A).
- Install julia by following these instructions: https://julialang.org/install/
- Download the .ipynb notebook files to your PC.
- Open the notebook files: 3 possibilities
A. Google Colab (no installation required)
1. upload the notebook files to your Google Drive
2. open them with Colab (https://colab.research.google.com)
3. Runtime > Change Runtime > select Julia
B. Visual Studio Code [VS Code] (especially if you already have it installed)
1. install Jupyter Extension: View > Extensions > search for Jupyter
2. search and open the notebook file(s)
C. Jupyter Notebook (especially if you already have python installed)
1. install Jupyter Notebook: pip install notebook in the terminal/command prompt
2. launch Jupyter Notebook: jupyter notebook in the terminal/command prompt
3. search and open the notebook file(s) in the browser page that opens up