Issue
I'm trying to parse the following line of code in an iPython notebook.
from Ipython.display import display, Image
I get the following error,
ModuleNotFoundError: No module named 'Ipython'
When I run pip3 install Ipython
Here's what I get.
Requirement already satisfied: Ipython in ./.envs/dl/lib/python3.6/site-packages
I'm running the code in the same virtual env in which ipython is installed. What am I missing. My python version is 3.6.
Solution
Its from IPython.display import display, Image
'P' also caps in IPython
Answered By - Bijoy
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.