答案 0 :(得分:1)
ipython
是Jupyter的依赖项,因此已经安装了。
您似乎正在尝试导入ipython小部件(ipywidgets
)以便在Jupyter中使用。为此,在你的shell(Jupyter之外)安装ipywidgets:
pip install ipywidgets
jupyter nbextension enable --py widgetsnbextension
然后导入小部件:
import ipywidgets as widgets
Read the docs to learn more about installing and using ipython widgets.
答案 1 :(得分:0)
我认为问题的一部分是导入语句中IPython包的大写:
尝试:plot3(Bstruct.scen_1(1:num_cols), Bstruct.scen_1(cellvalue), Bstruct.scen_1(1:num_rows))
我不知道这是否能为您提供所需的一切,但这可能是您导入的问题。