Import Error - Tornado Requires An Updated Ssl Module On Ubuntu 14.04
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 dist
Solution 1:
Latest tornado
library doesn't support your interpreter version. You have two options.
Either install old tornado (recommended):
pip install tornado==4.*
pip install jupyter
Or install new python. Ubuntu doesn't provide an official package for it, so you have to use community package:
sudo add-apt-repository ppa:jonathonf/python-2.7
sudo apt-getupdate
sudo apt-get install python2.7
pip install jupyter
Solution 2:
python -m pip install --upgrade pip setuptools wheel
ref: https://packaging.python.org/tutorials/installing-packages/
Post a Comment for "Import Error - Tornado Requires An Updated Ssl Module On Ubuntu 14.04"