These are instructions for installing Python and Jupyter-notebook in your own personal LINUX system. 1. Update your system before installing new packages: sudo apt update sudo apt upgrade -y 2. Install Python3: sudo apt install python3 -y 3. Install pip for managing Python libraries: sudo apt install python3-pip -y 4. Install jupyter-notebook: sudo apt install jupyter-notebook 5. Install RISE (optional, for slides inside Jupyter-notebook): sudo pip3 install RISE --break-system-packages