
极客大全推荐将conda环境加入jupyterlab这篇文章给大家,欢迎收藏极客大全享受知识的乐趣
创建conda环境并安装python
conda create -n test source activate test conda install python
安装ipykernel
pip install ipykernel -i https://pypi.tuna.tsinghua.edu.cn/simple
加入jupyterlab
python -m ipykernel install --user --name test --display-name "test2"
打开jupyterlab即可查看多了一个kernel
查看kernel列表
jupyter kernelspec list
原文链接:https://www.cnblogs.com/1016391912pm/p/16476886.html