英文:
Jupyter cells go blank after scrolling in Vscode
问题
I just upgraded to the latest version of VSCODE 1.75.0, and now jupyter is not working properly in VSCODE...
我刚刚升级到最新版本的 VSCODE 1.75.0,但现在在 VSCODE 中 Jupyter 并没有正常工作...
I am about to uninstall everything and reinstall VSCODE and jupyter. But if there is an easier fix for this I would love to know.
我准备卸载所有东西,然后重新安装 VSCODE 和 Jupyter。但如果有更简单的解决方法,我希望知道。
I can minimize the jupyter cell and then re-open it and the code will appear, but when I scroll down and scroll back up, everything is blank.
我可以最小化 Jupyter 单元,然后重新打开它,代码会出现,但当我滚动下去然后滚动回来时,一切都是空白的。
I have tried uninstalling the jupyter vscode extension, and python extensions using
python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat jupyterlab-widgets nbclient
我尝试卸载了 Jupyter 的 VSCode 扩展,以及 Python 扩展,使用以下命令:
python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat jupyterlab-widgets nbclient
but it is still opening the files as a notebook somehow... so there must be an extension somewhere causing this.
但它仍然以某种方式将文件打开为一个笔记本...所以肯定有某个扩展程序在引起这个问题。
英文:
I just upgraded to the latest version of VSCODE 1.75.0, and now jupyter is not working properly in VSCODE...
I am about to uninstall everything and reinstall VSCODE and jupyter. But if there is an easier fix for this I would love to know.
I can minimize the jupyter cell and then re-open it and the code will appear, but when I scroll down and scroll back up, everything is blank.
I have tried uninstalling the jupyter vscode extension, and python extensions using
python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat jupyterlab-widgets nbclient
but it is still opening the files as a notebook somehow... so there must be an extension somewhere causing this.
答案1
得分: 0
升级后,卸载整个应用程序并重新安装解决了问题。我注意到它也从1.75.0版本升级到了1.75.1版本。
英文:
Update, uninstalling the entire application and re-installing it solved the problem. I noticed that it went from 1.75.0 to 1.75.1 as well.
答案2
得分: 0
根据上周在GitHub上的此问题。
这是VsCode 1.75.0的错误。您可以使用最新版本1.75.1或使用旧版本来解决这个问题。
您还可以将以下代码添加到您的 settings.json
中,以便VsCode会自动更新:
"update.mode": "default",
英文:
According to this issue on github last week.
This is the error of VsCode 1.75.0. You can use the latest version of 1.75.1 or use the old version to solve this problem.
You can also add the following codes to your settings.json
so that VsCode will update by itself:
"update.mode": "default",
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论