File hashing progress bar not appearing in Jupyter Notebooks
evamaxfield opened this issue · 2 comments
evamaxfield commented
OS: MacOS Mojave 10.14.4 (18E226)
Python Version: 3.7.3
t4 Version: 0.0.10
ipywidgets Version: 7.4.2
Tested on Jupyter Lab notebook, iPython terminal, and python terminal:
Relevant log from Jupyter Lab:
100%|██████████| 2/2 [00:00<00:00, 2.28it/s]
HBox(children=(IntProgress(value=0, description='Hashing', max=760565676, style=ProgressStyle(description_widt…
Relevant log from iPython:
100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 14.14it/s]
Hashing: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 761M/761M [01:34<00:00, 8.08MB/s]
Relevant log from python:
100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 2/2 [00:02<00:00, 1.23s/it]
Hashing: 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 761M/761M [01:01<00:00, 12.4MB/s]
ResidentMario commented
This is an upstream issue with JupyterLab The canonical GH issue is tqdm/tqdm#394. This comment states that to resolve this issue you need to run the following in your terminal:
jupyter labextension install @jupyter-widgets/jupyterlab-manager
evamaxfield commented
No worries then!