在Jupyter笔记本中导入模块“ipython”

时间:2017-03-10 10:44:20

标签: widget ipython jupyter

有人可以帮我把ipython模块加载到jupyter笔记本中吗?

This is what I get when trying to load it

2 个答案:

答案 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))

我不知道这是否能为您提供所需的一切,但这可能是您导入的问题。