iPython ImportError: No module named display

前端 未结 2 920
庸人自扰
庸人自扰 2021-01-14 10:34

Trying to run python script but can\'t find module IPython.display.. Seems like it would be something simple but I can\'t find an answer anywhere!

/vagrant/d         


        
相关标签:
2条回答
  • 2021-01-14 10:59

    According to the IPython's repository, the IPython.display module was added in commit 5462c7e, and it was released with IPython 0.13.

    I think you have an older version of IPython.

    You can check the IPython version with ipython --version.

    It can be upgraded with pip install --upgrade IPython.

    0 讨论(0)
  • 2021-01-14 11:03

    In Pycharm import module ipython. In Pycharm go to preferences and then project interpreter. Click on the "+" sign then search ipython and install package.

    0 讨论(0)
提交回复
热议问题