将虚拟环境添加至jupyter notebook中

之前看过网上的许多办法并且实践过,大多数是以失败告终,最终找到了一个好用的方法

分享一个成功并且简单的方法,参考自https://blog.csdn.net/w55100/article/details/88925697、

1.打开终端cmd(最好以管理员身份运行)

2.激活之前安装好好的环境,例如我之前安装的环境名称是   tf1 

3.输入conda install ipykernel

安装ipykernel,等待安装完成

4.-display-name DISPLAY_NAME是想要在Jupyter中显示的名字,我想要显示的名字仍然是tf1

输入python -m ipykernel install --display-name tf1 

将虚拟环境添加至jupyter notebook中_第1张图片

我们此时再输入jupyter notebook打开jupyter,出现了想要的东西

将虚拟环境添加至jupyter notebook中_第2张图片

你可能感兴趣的:(工具,python,人工智能,机器学习)