From 74c9dda197fc4e19ba16c4366c1c3314b8bd7fce Mon Sep 17 00:00:00 2001
From: Malte Woidt <m.woidt@tu-bs.de>
Date: Fri, 4 Nov 2022 15:32:22 +0100
Subject: [PATCH] update_readme

---
 Readme.md                                 | 6 +++---
 Uebung01/JupyterNotebook_Grundlagen.ipynb | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index c374560..74ca4b9 100644
--- a/Readme.md
+++ b/Readme.md
@@ -6,15 +6,15 @@ für die Nutzung der Notebooks aus diesem Repository werden folgende Python-Pake
 * pandas
 * numpy
 * scipy
-* jupyter-lab
-* jupyter-nbclassic
+* jupyter
+* jupyterlab
 * mobilechelonian
 * ipywidgets 
 
 Du kannst sie mit dem folgenden Befehl installieren:
 
 ```
-pip3 install matplotlib pandas numpy scipy jupyter jupyter-lab jupyter-nbclassic ipywidgets mobilechelonian
+pip3 install matplotlib pandas numpy scipy jupyter jupyterlab ipywidgets mobilechelonian
 ```
 
 Anschließend kann Jupyter über die Konsole gestartet werden. Dazu sollte sich die Konsole im Basisordner der Informatik-Übungen befinden.
diff --git a/Uebung01/JupyterNotebook_Grundlagen.ipynb b/Uebung01/JupyterNotebook_Grundlagen.ipynb
index 407e042..d24c086 100644
--- a/Uebung01/JupyterNotebook_Grundlagen.ipynb
+++ b/Uebung01/JupyterNotebook_Grundlagen.ipynb
@@ -298,7 +298,7 @@
     "\n",
     "# Plot the Lorenz attractor using a Matplotlib 3D projection.\n",
     "fig = plt.figure(facecolor='k', figsize=(WIDTH/DPI, HEIGHT/DPI))\n",
-    "ax = fig.gca(projection='3d')\n",
+    "ax = fig.add_subplot(projection='3d')\n",
     "ax.set_facecolor('k')\n",
     "fig.subplots_adjust(left=0, right=1, bottom=0, top=1)\n",
     "\n",
-- 
GitLab