Jupyter notebook 3步切换 kernel
步骤
1 新建一个环境
conda create -n bigdata python = 3.7 (你的 python 版本)
2 **环境
activate bigdata
3 安装 ipykernel 模块
(bigdata )> pip install ipykernel
#将自己环境添加到 ipython 的 kernel 里
(bigdata )> python -m ipykernel install --user --name bigdata (你的环境名)
结果:
