Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 367 Bytes

File metadata and controls

17 lines (10 loc) · 367 Bytes

4- Python & Jupyter

4.1. Installing python

sudo apt-get update
sudo apt-get install python3.6 #we can select the python version we want. In this case python 3.6
python3 --version #to check the python version

4.2. Installing pip

sudo apt update
sudo apt install python3-pip

4.3. Installing jupyter

sudo pip3 install jupyter