Jupyterlab 可比 jupyter notebook好使多了
pip install jupyterlab
不是jupyter-lab
, 坑了好几次=_=
多个kernel自然是不同的conda env 里的python interpreter了
conda create -n tf2 python=3.7
conda activate tf2
在tf2中安装好所有相关的包
(tf2) pip install jupyterlab
...
(tf2) pip install ipykernel
(tf2) python -m ipykernel install --user --name tf2 --display-name "Python3.7 (tf2)"
最后一条命令就会在~/.local/share/jupyter/kernels/
建立配置文件,
jupyter kernelspec list
查看
jupyter kernelspec remove python3 # 卸载kernel python3
下次启动Jupyterlab,起始页面就可以选择新的kernel了