1
python --version
1234567
apt-cache policy pakagename# Let's say package numpy# you should type:apt-cache policy python-numpy# for package cpython# you should type: apt-cache policy cpython
12345678
# Install pip & matplotlibsudo apt-get install python-pipsudo apt-get install matplotlib# Install numpysudo apt-get install python-numpy
# Install pipcurl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"sudo python get-pip.py# Install jupyter notebookpip install jupyter