ModuleNotFoundError Traceback (most recent call last)
in
----> 1 from Ipython.core.interactiveshell import InteractiveShell
2 InteractiveShell.ast_node_interactivity = “all”
ModuleNotFoundError: No module named ‘Ipython’
解决Jputer只能输出最后一行结果代码是:
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = “all”
但我在写的时候把IPython写成了Ipython,所以报错
ModuleNotFoundError: No module named ‘Ipython’
所以这种导入包之类的东西尽量复制粘贴