解决不能再jupyter notebook中使用tensorflow

Posted jiangxinyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决不能再jupyter notebook中使用tensorflow相关的知识,希望对你有一定的参考价值。

在搭建cuda + Anaconda + tensorflow的开发环境时,在虚拟环境中的jupyter notebook启动后无法导入tensorflow。具体解决方案如下:

1、首先在虚拟环境中安装ipython和jupyter,可以用conda安装,也可以用pip安装

pip install ipython
pip install jupyter

2、执行下面的命令(不知道为什么)

ipython kernelspec install-self --user

3、

mkdir -p ~/.ipython/kernels

4、

mv ~/.local/share/jupyter/kernels/python3 ~/.ipython/kernels/<kernels_name>

5、打开kernel.json文件,然后将display_name 后面的内容修改为<kernels_name>

vim ~/.ipython/kernels/<kernels_name>/kernel.json

 

以上是关于解决不能再jupyter notebook中使用tensorflow的主要内容,如果未能解决你的问题,请参考以下文章

jupyter notebook闪退,怎么解决

Jupyter Notebook不能自动打开浏览器

windosws下安装jupyter notebook启动后空白问题的解决方法

运行jupyter notebook出现这种情况的原因如何解决

运行jupyter notebook出现这种情况的原因如何解决

使用jupyter notebook 时明明已经安装了某个lib,还是出现ModuleNotFoundError