AWS issues DL1

Facing the issue while trying to launch notebook.
Help is really appreciated :slight_smile:

(fastai) ubuntu@ip-172-31-35-90:~/fastai$ jupyter notebook
Traceback (most recent call last):
File “/home/ubuntu/src/anaconda3/envs/fastai/bin/jupyter-notebook”, line 7, in
from notebook.notebookapp import main
File “/home/ubuntu/src/anaconda3/envs/fastai/lib/python3.6/site-packages/notebook/notebookapp.py”, line 45, in
ioloop.install()
File “/home/ubuntu/src/anaconda3/envs/fastai/lib/python3.6/site-packages/zmq/eventloop/ioloop.py”, line 210, in install
assert (not ioloop.IOLoop.initialized()) or
AttributeError: type object ‘IOLoop’ has no attribute ‘initialized’

1 Like

Have you updated your environment yet :thinking:? Can you run the following and report back

git pull
conda env update
conda update --all

Yes I had done the updates.
Done it again just in case.
Still facing the same issue.

From google

Yesterday the tornado package just released version 5.0, and this new version may be causing this error. Try downgrading tornado to 4.5.3 and see if that fixes it.

3 Likes

try executing export PATH=~/anaconda3/bin:$PATH on the command line

That worked :slight_smile:
I guess till the issue gets resolved, there is a need to exclude tornado to update to version 5.

1 Like