安装好 PyTorch1.5.0 之后,在 Anaconda Prompt 中激活新创建的环境变量之后,import torch 并 打印 torch 的版本没有问题,说明 PyTorch 已经安装成功。但是打开 Jupyter Notebook 后 import torch 却提示 “No module named torch”
错误如下:
我们还需要在这个环境安装 jupyter notebook 的一系列依赖库
conda install jupyter
接着在这个环境变量中安装nb_conda(关键)
conda install nb_conda
重启 jupyter notebook 后再进入,选择对应的 Kernel 新建文件即可:
import torch 可以正常使用了
参考:
- 安装PyTorch后jupyter notebook中仍出现”No module named torch”
- Windows下用pip安装pytorch,在jupyter notebook中无法引入问题的解决
版权声明:本文为博主叶庭云原创文章,版权归属原作者,如果侵权,请联系我们删除!
原文链接:https://blog.csdn.net/fyfugoyfa/article/details/122908478