ali
ali

Reputation: 119

Ipython is not working

I installed Ipython with using :

pip install ipython

And here is the code that I want make it to work :

from Ipython.display import Audio

But it gives an error : "No module named Ipython.display". How can I fix the problem ? I am using python2.7 on ubuntu.

Upvotes: 1

Views: 364

Answers (1)

Moses Koledoye
Moses Koledoye

Reputation: 78554

IPython unfortunately does not follow the popular Python naming convention. The first two letters are in uppercase:

from IPython.display import Audio

Upvotes: 3

Related Questions