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

【亲测好用】Windows系统下的 jupyter notebook 使用 anaconda 的 virtualenv 虚拟环境

程序员文章站 2022-06-06 20:30:39
...

【亲测好用】Windows系统下的 jupyter notebook 使用 anaconda 的 virtualenv 虚拟环境

1. 在这个路径下新建这个文件夹

路径:C:\Users\JulianYang\Anaconda2\share\jupyter\kernels(这里“JulianYang”为我的计算机用户名)
文件夹名:tensorflow_gpu(这是我的anaconda虚拟环境名字)
【亲测好用】Windows系统下的 jupyter notebook 使用 anaconda 的 virtualenv 虚拟环境

2. 在该文件夹下新建该文件

文件:kernel.json
【亲测好用】Windows系统下的 jupyter notebook 使用 anaconda 的 virtualenv 虚拟环境
文件内容为:
【亲测好用】Windows系统下的 jupyter notebook 使用 anaconda 的 virtualenv 虚拟环境

{

"display_name": "tensorflow_gpu",

"language": "python",

"argv": [

"C:\\Users\\JulianYang\\Anaconda2\\envs\\tensorflow_gpu\\python.exe",

"-m",

"ipykernel_launcher",

"-f",

"{connection_file}"

]

}

3. 在你的虚拟环境中安装一个包

(tensorflow_gpu) C:\Users\JulianYang>pip install ipykernel

然后:

(tensorflow_gpu) C:\Users\JulianYang>python -m ipykernel install --user --name=tensorflow_gpu

【亲测好用】Windows系统下的 jupyter notebook 使用 anaconda 的 virtualenv 虚拟环境

4. 试一试

【亲测好用】Windows系统下的 jupyter notebook 使用 anaconda 的 virtualenv 虚拟环境
【亲测好用】Windows系统下的 jupyter notebook 使用 anaconda 的 virtualenv 虚拟环境
OK啦!