提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档
经常需要临时增加新的虚拟环境,经常忘记怎么关联新的虚拟环境到jupyter里,简单记录一下,以备后续查阅。
打开anaconda的prompt,启动虚拟环境
(base) C:\Users\Administrator>conda activate python38
注:python38是我已经配置好的虚拟环境名称
(python38) C:\Users\Administrator>pip install ipykernel
(python38) C:\Users\Administrator>python -m ipykernel install --name python38
以后可以直接参考。