jupyter notebook安装jupyter_contrib_nbextensions 并添加内核ipykernel可以切换成自己的内核ipykernel

1、打开终端运行 

pip install jupyter_contrib_nbextensions

2、运行

jupyter contrib nbextension install --user

3、打开你的jupyter notebook,你就会发现,菜单栏上面多了一栏Nbextension,在那里面勾选你想要的扩展功能即可,比如

实现代码收叠的:Codefolding

添加左边目录栏的: Table of Contents

代码自动补全: Hinterland 

自动pep8 : Autopep8   

字体大小:Code font Size 

拼写检查 :spellchecker

代码行号:Toggle all line numbers

4.添加内核 ,如下示例

# 激活环境

conda activate  py39

# 需要使用ipykernel这个包,安装下

conda install ipykernel

# 将当前环境的解释器添加到jupyter里

python -m ipykernel install --name py39

# 如果出现错误[Errno 13] Permission denied: '/usr/local/share/jupyter'

python -m ipykernel install --name py39 --user

5.删除内相,如下 

# 查看内核

jupyter kernelspec list

# 删除你的内核

jupyter kernelspec uninstall 你的内核

你可能感兴趣的:(jupyter,python,ide)