简体   繁体   中英

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.

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

from IPython.display import Audio

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM