我正在尝试使用 tqdm 显示进度条。我的系统是windows 7 64位。安装 tqdm usingconda install tqdm
不适用。因此,我使用 anaconda 提示符中的命令从https://anaconda.org/conda-forge/tqdm安装了 tqdm,如下所示:
conda install -c conda-forge tqdm=4.8.4
我用下面的例子测试它
from tqdm import tnrange, tqdm_notebook
from time import sleep
for i in tnrange(4,desc='1st loop'):
for j in tnrange(10, desc='2nd loop'):
sleep(0.01)
IPython 控制台显示以下消息:
Widget Javascript not detected. It may not be installed properly. Did you enable the widgetsnbextension? If not, then run "jupyter nbextension enable --py --sys-prefix widgetsnbextension"
我可以知道如何解决这个问题吗?先感谢您。