Tips:在添加将虚拟环境添加到jupyter中的时候要先进入虚拟环境,再添加kernel
问题总结:可以在终端中该虚拟环境的python解释器并成功 import tensorflow;无法在 jupyter 中对应 kernel 中 import tensorflow
import sys
sys.executable
查看想要使用 kernel 的配置文件,并将python解释器路径修改成自己需要的
C:\Users\用户名\AppData\Roaming\jupyter\kernels\tensorflowlab\kernal.json
(1)删除目前已经存在的 kernel
jupyter kernelspec remove tensorflowlab
(2)进入想要添加 kenel 的虚拟环境后,再添加kernel
conda activate tensorflowLab
python -m ipykernel install --user --name tensorflowLab --display-name "tf"
https://blog.csdn.net/zz2230633069/article/details/85932856
https://blog.csdn.net/Jerryzhangjy/article/details/114267645
如有错误,欢迎指正