Loading... ## jupyterlab 内核错误 1.创建虚拟环境 ```python conda create -n env_name python=X.X ``` 2.激活虚拟环境 ```python activate your_env_name ``` 3.安装ipykernel ```python pip install ipykernel ``` env_name为准备使用kernel的虚拟环境名称,name_in_jupyter为将在JupyterLab中显示的名称。 ```python python -m ipykernel install --user --name env_name --display-name "name_in_jupyter" ``` --- ```python #查看已有kernel: jupyter kernelspec list #删除不想要的kernel: jupyter kernelspec uninstall unwanted-kernel ``` Last modification:February 1, 2022 © Allow specification reprint Support Appreciate the author AliPayWeChat Like 如果觉得我的内容对你有用,请随意赞赏
One comment
新年快乐