diff --git a/setup_for_use_in_g5k.ipynb b/setup_for_use_in_g5k.ipynb
index 3daec19927e8bab7251a1903ee1cc1f6211b8518..78705b22cc61a083fb95c7fba1ab5cf82aee5e07 100644
--- a/setup_for_use_in_g5k.ipynb
+++ b/setup_for_use_in_g5k.ipynb
@@ -13,7 +13,7 @@
     "---\n",
     "\n",
     "- Website: https://discovery.gitlabpages.inria.fr/enoslib/index.html\n",
-    "- Instant chat: https://framateam.org/enoslib\n",
+    "- Support channel: https://framateam.org/enoslib\n",
     "- Source code: https://gitlab.inria.fr/discovery/enoslib\n",
     "\n",
     "---"
@@ -61,11 +61,11 @@
     "virtualenv -p python3 my_venv\n",
     "source my_venv/bin/activate\n",
     "\n",
-    "# install a specific version \n",
-    "python3 -m pip install -U enoslib==9.2.1\n",
+    "# install a specific major version\n",
+    "python3 -m pip install -U 'enoslib[jupyter]>=10,<11'\n",
     "\n",
-    "# install the latest version\n",
-    "# python3 -m pip install -U  git+https://gitlab.inria.fr/discovery/enoslib\n",
+    "# install the latest development version\n",
+    "# python3 -m pip install -U 'enoslib[jupyter] @ git+https://gitlab.inria.fr/discovery/enoslib'\n",
     "\n",
     "# install some extra dependencies\n",
     "python3 -m pip install matplotlib seaborn pandas scapy\n",
@@ -85,8 +85,8 @@
     "<div class=\"alert alert-warning\"> \n",
     "Goal: Make sure we're using the library installed in the previous virtual environment.\n",
     "\n",
-    "- Switch the kernel to `my_venv`: `kernel > Change kernel` and select `my_venv`\n",
-    "- - Refresh the browser (optional but sometime required)\n",
+    "- Switch the kernel to `my_venv`: in the notebook interface, go to `Kernel > Change kernel` and select `my_venv`\n",
+    "- Refresh the browser (optional but sometime required)\n",
     "- Re-execute this notebook\n",
     "</div>"
    ]
@@ -113,8 +113,7 @@
     "import enoslib as en\n",
     "\n",
     "# check the version\n",
-    "en.check()\n",
-    "\n"
+    "en.check()"
    ]
   },
   {