From fb8966f2a20111edeeb0bb94d2ba051b4f46330d Mon Sep 17 00:00:00 2001 From: Michele Nottoli <michele.nottoli@gmail.com> Date: Tue, 10 Oct 2023 13:48:54 +0200 Subject: [PATCH] Updated notebook 0. --- 0_Installation.ipynb | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/0_Installation.ipynb b/0_Installation.ipynb index 9e3f407..652a3b4 100644 --- a/0_Installation.ipynb +++ b/0_Installation.ipynb @@ -30,7 +30,7 @@ "- All required dependencies (Julia packages) for the workshop\n", "\n", "### Getting Julia\n", - "For following the course you will need at least Julia 1.6, but for full compatibility **Julia 1.8** is recommended.\n", + "For following the course you will need **Julia 1.9**.\n", "Julia can be easily obtained in binary form from [Julia downloads](https://julialang.org/downloads/).\n", "\n", "### Getting all the rest\n", @@ -45,6 +45,14 @@ "julia install-manual.jl\n", "```\n", "\n", + "### Starting the notebook\n", + "To start the notebook make sure to be in the folder `Julia-seminar` and then run `julia`: an interactive Julia command line will open. In there run this command\n", + "\n", + "```\n", + "using IJulia; notebook(dir=pwd())\n", + "```\n", + "and the notebook will automatically open in a browser.\n", + "\n", "### Troubleshooting\n", "If you are facing issues, check out\n", "the [great troubleshooting section](https://carstenbauer.github.io/WorkshopWizard.jl/dev/troubleshooting/)\n", @@ -65,7 +73,7 @@ "- Alle benötigten Abhängigkeiten (Julia-Pakete) für das Seminar\n", "\n", "### Julia herunterladen\n", - "Um dem Kurs zu folgen, benötigst du mindestens Julia 1.6, aber für volle Kompatibilität wird **Julia 1.8** empfohlen.\n", + "Um dem Kurs zu folgen, benötigen Sie **Julia 1.9**.\n", "Julia kann leicht in binärer Form von den [Julia-Downloads](https://julialang.org/downloads/) bezogen werden.\n", "\n", "### Alles andere herunterladen\n", @@ -79,6 +87,12 @@ "julia install-manual.jl\n", "```\n", "\n", + "### Starten des Notebooks\n", + "Um das Notebook zu starten, stellen Sie sicher, dass Sie sich im Ordner `Julia-seminar` befinden, und führen Sie dann `julia` aus: Eine interaktive Julia-Befehlszeile wird geöffnet. Führen Sie darin folgenden Befehl aus:\n", + "```\n", + "using IJulia; notebook(dir=pwd())\n", + "```\n", + "und das Notebook wird automatisch im Browser geöffnet.\n", "\n", "### Fehlerbehebung\n", "Wenn du auf Probleme stößt, schau dir den [ausgezeichneten Abschnitt zur Fehlerbehebung](https://carstenbauer.github.io/WorkshopWizard.jl/dev/troubleshooting/) des WorkshopWizard-Pakets von Carsten Bauer an (das von `install.jl` verwendet wird)." @@ -120,19 +134,11 @@ " push!(p, x, sin(x))\n", "end" ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "2d98e3b8", - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Julia 1.9.2", + "display_name": "Julia 1.9.3", "language": "julia", "name": "julia-1.9" }, -- GitLab