I installed jupyter using pip in virtualenv in python3. At startup:
jupyter notebook
I get the following error
File "<path>/ss/bin/jupyter-notebook", line 7, in <module> from notebook.notebookapp import main File "<path>/ss/lib/python3.4/site-packages/notebook/notebookapp.py", line 44, in <module> from zmq.eventloop import ioloop File "<path>/ss/lib/python3.4/site-packages/zmq/eventloop/__init__.py", line 3, in <module> from zmq.eventloop.ioloop import IOLoop File "<path>/ss/lib/python3.4/site-packages/zmq/eventloop/ioloop.py", line 78, in <module> while _IOLoop.configurable_default() is not _IOLoop: File "<path>/ss/lib/python3.4/site-packages/tornado/ioloop.py", line 350, in configurable_default from tornado.platform.asyncio import AsyncIOLoop File "<path>/ss/lib/python3.4/site-packages/tornado/platform/asyncio.py", line 25, in <module> from tornado.gen import convert_yielded File "<path>/ss/lib/python3.4/site-packages/tornado/gen.py", line 1295, in <module> _wrap_awaitable = asyncio.ensure_future AttributeError: 'module' object has no attribute 'ensure_future'
I updated each dependency module to its latest version using
- update
But he still gives me the same error.
source share