Yatharth Agarwal
Yatharth Agarwal

Reputation: 4564

iPython 3 Notebook raising ImportError: No module named 'IPython.frontend.html'

The iPython 2 console and notebook as well as the iPython 3 console work fine on my system.

But running ipython3 notebook gives an ImportError saying No module named 'IPython.frontend.html' and this traceback.

I think it may have something to do with Ubuntu RR package problems, but I'm not sure.

10x.

Upvotes: 0

Views: 2156

Answers (3)

Yatharth Agarwal
Yatharth Agarwal

Reputation: 4564

Ubuntu split the notebook functionality away form the main ipython3 package into ipython3-notebook in Raring.

Now installing ipython3 should install ipython3-notebook for you automatically as it recommends it; but when I had this problem, Raring critically depended on a package of python3 too high for python3-zmq which was depended on by ipython3-notebook causing ipython3-notebook' to not be installed (which I did not notice). Whew...

Upvotes: 2

SQLesion
SQLesion

Reputation: 165

I had this problem and fixed it by upgrading ipython (using --upgrade)

Upvotes: 0

Matt
Matt

Reputation: 27853

This might be due to the fact that the package layout has been change and IPython.frontend.html is now IPython.html do you have dev version installed by any chance ?

Upvotes: 1

Related Questions