Skip to content

Instantly share code, notes, and snippets.

@dvigneshwer
Created January 17, 2018 15:12
Show Gist options
  • Save dvigneshwer/014c660831fadf33539feb03b2d113c2 to your computer and use it in GitHub Desktop.
Save dvigneshwer/014c660831fadf33539feb03b2d113c2 to your computer and use it in GitHub Desktop.
Instruction to setup python3.6 & configure jupyter kernel

1. Checking your python version in jupyter kernel

import platform
platform.python_version()

2. Installing python3.6

sudo add-apt-repository ppa:jonathonf/python-3.6
sudo apt-get update
sudo apt-get install python3.6

3. Installing pip3.6

wget https://bootstrap.pypa.io/get-pip.py
sudo python3.6 get-pip.py

4. Modification to the jupyter kernel spec list

jupyter kernelspec list

Get the location of the kernel & make the suitable ref: jupyter/jupyter#270

Find all the version of python

whereis python

5. Installing jupyter & other dependencies

sudo pip3.6 install ipykernel jupyter jupyter_cms ipython jupyter_nbextensions_configurato

6. Restart your jupyter notebook

jupyter notebook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment