while installing juypter notebook on my ubuntu 14.04 I am getting this:
ImportError: Tornado requires an up-to-date SSL module. This means Python 2.7.9+ or 3.4+ (although some distributions have backported the necessary changes to older versions).
Pip is:
pip 10.0.1 from /usr/local/lib/python2.7/dist-packages/pip (python 2.7)
how to resolve this ?
Latest
tornado
library doesn't support your interpreter version. You have two options.Either install old tornado (recommended):
Or install new python. Ubuntu doesn't provide an official package for it, so you have to use community package:
ref: https://packaging.python.org/tutorials/installing-packages/