英文:
New Jupyter Notebook Interface
问题
I cannot figure out why my jupyter notebook looks different. I did my usual setup, where I created a virtual environment with python 3.9 so python -m venv my_env
and then installed jupyter notebook pip install jupyter notebook
. The jupyter notebook looks completely different. Can anyone help me on how to get back to the original one?
What I want to get back to:
enter image description here
What I currently have:
enter image description here
I tried reinstalling jupyter notebook. The current version is 7.0.2
英文:
I cannot figure out why my jupyter notebook looks different. I did my usual setup, where I created a virtual environment with python 3.9 so python -m venv my_env
and the installed jupyter notebook pip install jupyter notebook
. The jupyter notebook looks completely different. Can anyone help me on how to get back to the original one?
What I want to get back to:
enter image description here
What I currently have:
enter image description here
I tried reinstalling jupyter notebook. The current version is 7.0.2
答案1
得分: 2
"Jupyter Notebook看起来完全不同。有人可以帮我恢复到原来的样式吗?
针对引用的第二个问题,您正在寻找NbClassic。开发人员已经将它作为保留旧样式界面的方式。
从NbClassic存储库中:
"NbClassic提供了向后兼容的Jupyter Notebook界面,您可以与最新版本并存安装:这样,您可以放心升级,而不必担心经典扩展和自定义功能会出现问题。
它是如何工作的?
因为NbClassic在新的Jupyter Server后端之上提供了经典界面,所以它可以与其他前端(如JupyterLab和Notebook 7)在同一安装中共存。NbClassic在新的一组URL端点下保留了自定义的经典笔记本体验,即在/ nbclassic /命名空间下。"
有关这一点以及您的第一个问题的答案,可以查看以下资源,其中讨论了Jupyter生态系统中编辑和运行.ipynb文件的界面选项的最新发展。
- Jupyter Notebook 6.5.0 Release Candidate在开始附近有两个部分,'Notebook 6 vs Notebook 7'和'NbClassic',您会想要查看这些部分。
- 宣布Jupyter Notebook 7
- 至于为什么要考虑切换到JupyterLab或Jupyter Notebook 7及更高版本,请参阅JupyterLab 4.0来了,以了解新的格局以及在JupyterLab组件上构建Jupyter Notebook 7及更高版本意味着什么。
有关Jupyter生态系统的更多信息,请参阅概述:
https://twitter.com/jtpio/status/1683399787876429825 2023年7月
"我们与@JohanMabille的有关导航Jupyter Landscape的讨论现在可以在YouTube上观看🔊 🎉
如果您想要高层次地了解Jupyter生态系统并了解有关底层项目和库的更多信息,请查看JupyterCon 2023中的Jeremy Tuloup,Johan Mabille Navigating the Jupyter Landscape | JupyterCon 2023。"
英文:
>"The jupyter notebook looks completely different. Can anyone help me on how to get back to the original one?"
To address the second question quoted, you are looking for NbClassic. The developers have made that the way to keep the older style interface.
From the NbClassic repository:
>"NbClassic provides a backwards compatible Jupyter Notebook interface that you can install side-by-side with the latest versions: That way, you can fearlessly upgrade without worrying about your classic extensions and customizations breaking.
How does it work?
Because NbClassic provides the classic interface on top of the new Jupyter Server backend, it can coexist with other frontends like JupyterLab and Notebook 7 in the same installation. NbClassic preserves the custom classic notebook experience under a new set of URL endpoints, under the namespace /nbclassic/."
More about that and the answers to your first questions are covered by looking into the following resources that discusses recent developments in regards to the interface options for editing and running .ipynb
files in the Jupyter ecosystem.
- Jupyter Notebook 6.5.0 Release Candidate has two sections right near the start 'Notebook 6 vs Notebook 7' and 'NbClassic' that you'll want to examine.
- Announcing Jupyter Notebook 7
- As to why you may want to consider changing to JupyterLab or Jupyter Notebook 7 and beyond, see JupyterLab 4.0 is Here to get a sense of the new landscape and what building Jupyter Notebook 7 and beyond on JupyterLab components means is possible.
More on Jupyter ecosystem, an overview:
https://twitter.com/jtpio/status/1683399787876429825 July 2023
>"Our talk with @JohanMabille on Navigating the Jupyter Landscape is now available on YouTube 🎦 🎉
Check it out if you want a high-level overview of the Jupyter ecosystem and learn more about the underlying projects and libraries.Jeremy Tuloup, Johan Mabille Navigating the Jupyter Landscape | JupyterCon 2023"
答案2
得分: 0
为了 NbClassic,您需要降级到笔记本版本 6.1.*
英文:
for the NbClassic, you need to downgrade to notebook version 6.1.*
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论