欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Jupyter notebook 的各种配置 nbextensions 插件,中文转英文,安装nb_conda插件,添加kernel等等

程序员文章站 2022-05-25 17:07:32
...

Jupyter notebook 的各种配置 nbextensions 插件,中文转英文,安装nb_conda插件,

1.安装/卸载Jupyter

conda install jupyter notebook
conda uninstall jupyter

2.启动

jupyter notebook

3.jupyter添加kernel的python虚拟环境

conda activate  环境路径
conda install ipykernel
python -m ipykernel install --user --name py36 --display-name "Python (py36)"      py36为自己定义的名称
jupyter kernelspec list   查看已有的kernel
jupyter kernelspec uninstall 名称    删除不想要的名称

4. nbextensions 插件

pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user
重启jupyter
在nbextensions 勾选Hinterland

5. jupyter中文转英文

找到notebook的汉化文件夹路径比如~/miniconda3/lib/python3.6/site-packages/notebook/i18n/zh_CN, 
将其重命名如加个下划线作为后缀zh_CN_old,重新打开jupyter就行了, 这样jupyter就找不到这个中文配置。

6.安装nb_conda插件

conda install nb_conda 
jupyter serverextension disable nb_conda
jupyter serverextension enable nb_conda
重启jupyter

本文做个笔记吧,能帮到遇到同样问题的友友最好!!!