Ipython Importerror: No Module Named Display
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/dreamify.py in
Solution 1:
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
.
Solution 2:
In Pycharm import module ipython. In Pycharm go to preferences and then project interpreter. Click on the "+" sign then search ipython and install package.
Post a Comment for "Ipython Importerror: No Module Named Display"