I am running a Jupyter notebook instance and it has both python 2 and python 3 kernels. However, when i use the python 2 kernel and execute below statements,
import sys sys.executable I get python 3 path
'/usr/bin/python3.4' How do i force it to use python 2.7
