欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jupyter notebook 多环境conda kernel配置

程序员文章站 2022-06-13 19:04:00
...

jupyter notebook 多环境conda kernel配置

一直记不住在jupyter notebook配置多环境编译器技巧,今总结于此,也希望对其他小伙伴有所帮助,如果有用请点赞!

1.对windows用户,win+R,输入cmd进去进入命令行,**环境:

jupyter notebook 多环境conda kernel配置

2.首先,确定自己是否安装包‘ipykernel’,若是没有安装,则进行安装;已安装进行下一步。

jupyter notebook 多环境conda kernel配置

3.然后输入命令:
python -m ipykernel install --user --name deeplearningproject --display-name "deeplearningproject"

注:上述两个 deeplearningproject,前者是自身环境名称,不能变化;后者是在jupyter notebook的显示名称,可修改。

jupyter notebook 多环境conda kernel配置

4.至此,完成所有操作,输入jupyter notebook进行验证

jupyter notebook 多环境conda kernel配置

5.大功告成

jupyter notebook 多环境conda kernel配置

至此,完成所有操作,有用请点赞,谢谢~~!