向jupyter notebook加入Anaconda3中已添加的虚拟环境kernel
Posted jeshy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向jupyter notebook加入Anaconda3中已添加的虚拟环境kernel相关的知识,希望对你有一定的参考价值。
# jupyter notebook添加Anaconda虚拟环境的kernel
# 开启虚拟环境
(base) C:Usersjiangshan>activate tensorflow
# 首先向虚拟环境安装ipykernel
(tensorflow) C:Usersjiangshan>conda install -n tensorflow ipykernel
# 进行配置
(tensorflow) C:Usersjiangshan>python -m ipykernel install --user --name tensorflow --display-name "Tensorflow"
Installed kernelspec tensorflow in C:UsersjiangshanAppDataRoamingjupyterkernels ensorflow
# 启动jupyter notebook,然后在"新建"中就会有Tensorflow这个kernel了
(tensorflow) C:Usersjiangshan>jupyter notebook
以上是关于向jupyter notebook加入Anaconda3中已添加的虚拟环境kernel的主要内容,如果未能解决你的问题,请参考以下文章
关于如何往Jupyter notebook添加可选的kernel
我已下载好haskell语言,我怎么将haskell加入到jupyter notebook的新的内核当中去?
如何使用 python pandas 在本地系统 Jupyter Notebook 中读取两个较大的 5GB csv 文件?如何在本地加入两个数据框进行数据分析?