Closed Saltsmart closed 2 weeks ago
Please can you share the contents of the notebook after you have completed the execution of the above cell.
Please can you share the contents of the notebook after you have completed the execution of the above cell.
Sometimes it seems to be:
Could not render content for 'application/vnd.jupyter.widget-view+json'
{"model_id":"1a73d4b8a112420ba6037ab50c6cc710","version_major":2,"version_minor":0}
It often happens across large ipynb files, with "model_id" varied. I have checked the ipynb output content in the bulit-in text editor, and found there is no problem:
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1a73d4b8a112420ba6037ab50c6cc710",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
" 0%| | 0/1828 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
I think it because in the restarting (start process of VSCode, reactivating terminals, Pylance re-analysis of the code, or something else) the tqdm bar couldn't be rendered.
I think it because in the restarting
Does this issue repro when you disable all extensions except for the following
I think it because in the restarting
Does this issue repro when you disable all extensions except for the following
- Jupyter
- Notebook Renderers
- Python
Seem that it is not happening (for now).
However when I re-enable the disabled extensions and restart the window, the bug still not happens:
Given that you can no longer repro this let’s close this for now
Applies To
What happened?
with tqdm(total=100) as pbar: for i in range(100): sleep(0.1) pbar.update()