无法在笔记本中使用tqdm_notebook

时间:2019-01-29 21:49:07

标签: python jupyter-notebook tqdm

当我在迭代中使用tqdm_notebook时:

from tqdm import tqdm_notebook as tqdm

它仅显示:

HBox(children=(IntProgress(value=1, bar_style='info', max=1), HTML(value='')))

我该怎么办?

2 个答案:

答案 0 :(得分:2)

可能您没有安装ipywidget。

对于Jupyter Notebook,您可以使用 $ jupyter nbextension list

对于Jupyter Lab,您可以通过 $ jupyter labextension list

安装ipywidgets的描述here

答案 1 :(得分:0)

用于 JupyterLab:

  1. 安装 ipywidgets 包:

    使用 pip

    <块引用>

    pip 安装 ipywidgets

    <块引用>

    jupyter nbextension enable --py widgetsnbextension

    使用 conda

    <块引用>

    conda install -c conda-forge ipywidgets

    (使用 conda 安装 ipywidgets 也会为您启用扩展。)

  2. 然后运行以下命令来安装支持 FigureWidget 的 Jupyter 小部件扩展(请注意,这将需要在您的系统中安装 nodeJs):

<块引用>

jupyter labextension install @jupyter-widgets/jupyterlab-manager