1

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.

1 Answer 1

3

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

from IPython.display import Audio

Not the answer you're looking for? Browse other questions tagged or ask your own question.