windows10下 Jupyter 添加anaconda环境

参考:https://blog.csdn.net/weixin_39934500/article/details/79138235

首先查看 anaconda下的环境信息  conda env list

激活你想要的环境名称:  activate  环境名称

将环境写入jupyter notebook 的kernel中

python -m ipykernel install --user --name 环境名称 --display-name "Python (环境名称)"

 重新打开jupyter 

原文地址:https://www.cnblogs.com/guohaoblog/p/9391298.html