Windows10+Jupyter notebook+添加核

链接:https://blog.csdn.net/ZWX2445205419/article/details/80113472

1. 安装Anaconda
 
2. 创建虚拟环境
 
> conda create -n myenv python=3.5
> conda info -e # 查看虚拟环境12
3. 安装nb_conda_kernels包
 
> conda install nb_conda_kernels1
 
4. 进入myenv虚拟环境
> activate myenv1
6. 安装ipykernel
(myenv) > pip install ipykernel1
7. 添加核
(myenv) > python -m ipykernel install --name myenv1
8. 打开jupyter notebook
(无需在虚拟环境中输入命令)
> jupyter notebook1
 
查看jupyter notebook kernel
使用命令jupyter kernelspec list可以查看当前的kernel
删除notebook kernel
使用命令jupyter kernelspec remove kernelname
————————————————
原文链接:https://blog.csdn.net/zwx2445205419/article/details/80113472
原文地址:https://www.cnblogs.com/cupleo/p/11764359.html