diff --git a/001-Jupyter/Create_JupyterKernel_general.ipynb b/001-Jupyter/Create_JupyterKernel_general.ipynb index aa9a668ea26e800945e4c0ce1f4e49bb09956911..43a8eb23edac0a193d8ec32d9b0cea03070d0a98 100644 --- a/001-Jupyter/Create_JupyterKernel_general.ipynb +++ b/001-Jupyter/Create_JupyterKernel_general.ipynb @@ -100,6 +100,12 @@ "cell_type": "markdown", "metadata": {}, "source": [ + "<div class=\"alert alert-block alert-info\">\n", + "<b>Attention:</b>\n", + "Please choose 'private kernel' if you are unsure.</br>\n", + "Using 'project kernel's need to be enabled for your project first by our Jupyter-JSC admins.\n", + "</div>\n", + "\n", "* Set kernel type\n", " - private kernel = \"\\${HOME}/.local/\" \n", " - project kernel = \"\\${PROJECT}/.local/\" \n", @@ -188,7 +194,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "* 1.1 - Load required modules" + "* 1.1 - Load basic Python module" ] }, { @@ -302,7 +308,12 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "* 2.1 - Create launch script, which loads your Python virtual environment and starts the ipykernel process inside:" + "* 2.1 - Create launch script, which loads your Python virtual environment and starts the ipykernel process inside:\n", + "\n", + "<div class=\"alert alert-block alert-info\">\n", + "<b>Attention:</b>\n", + "You MUST load the exactly the same modules as you did above for your virtual Python environment.\n", + "</div>" ] }, { @@ -313,7 +324,7 @@ "source": [ "echo '#!/bin/bash'\"\n", "\n", - "# Load required modules\n", + "# Load basic Python module\n", "module purge\n", "module use \"'$OTHERSTAGES'\"\n", "module load Stages/2020\n",