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

在jupyter notebook 中切换环境

程序员文章站 2022-03-10 09:52:36
...

1.安装conda
2,在conda中安装

conda install ipykernel

在jupyter notebook 中切换环境
3,运行下面命令,将环境注册到jupyter notebook中,其中 pyecharts_t 修改为你自己想切换的环境名称

C:\Users\98113>python -m ipykernel install --user --name pyecharts_t --display-name "Python [conda env:pyecharts_t]"

在jupyter notebook 中切换环境
4,用平时打开 jupyter notebook 的方式打开即可,这时新增就可以找到你添加的环境了

jupyter notebook

在jupyter notebook 中切换环境