web-dev-qa-db-ja.com

Jupyterノートブックは進捗バーを表示していません

私はJupyterノートブックで進行中のバーを入手しようとしています。これは新しいコンピュータです、そして私が通常何をしているのはうまくいかないようです。

from tqdm import tqdm_notebook
example_iter = [1,2,3,4,5]
for rec in tqdm_notebook(example_iter):
    time.sleep(.1)
 _

次のテキスト出力を生成し、プログレスバーを表示しません

HBox(children=(IntProgress(value=0, max=5), HTML(value='')))
 _

同様に、このコード:

from ipywidgets import FloatProgress
from IPython.display import display
f = FloatProgress(min=0, max=1)
display(f)
for i in [1,2,3,4,5]:
    time.sleep(.1)
 _

このテキスト出力を生成します。

FloatProgress(value=0.0, max=1.0)
 _

Jupyterにこれらの進行状況バーを表示するには、抜け出している設定がありますか?

20
J.Doe

ノードがインストールされていない場合は、ここでの指示に従うことができます. https://github.com/nodesource/distributions/blob/master/readme.md#debinstall

curl -sL https://deb.nodesource.com/setup_15.x | bash -
apt-get install -y nodejsapt-get install -y nodejs
 _

しかし、いつかCondaでインストールする方が良いです。

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
chmod +x Miniconda3-latest-Linux-x86_64.sh
 ./Miniconda3-latest-Linux-x86_64.sh
 _

その後:

conda install -c conda-forge nodejs
jupyter labextension install @jupyter-widgets/jupyterlab-manager

 _

参照: https://ipywidgets.readthedocs.io/en/latest/user_install.html

0