Windows10+Jupyter notebook+添加核

…衆ロ難τιáo~ 提交于 2019-12-02 22:13:58

链接: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
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!