我创建了一个conda环境
conda create -n tfgpu tensorflow-gpu
conda activate tfgpu
但现在运行后
(tfgpu) > jupyter notebook
我无法将tensoflow导入为tf ,笔记本无法加载此环境! 为什么会发生?
答案 0 :(得分:1)
我的问题在以下时间得到解决
https://stackoverflow.com/a/44786736/12370909
conda create -n tfgpu tensorflow-gpu
conda activate tfgpu
python -m ipykernel install --user --name tfgpu --display-name "Python (tfgpu)"
jupyter notebook
然后,您可以通过从下拉列表中选择“ Python(tfgpu)”来使用您的环境来创建新笔记本。