我正在尝试在jupyter notebook python文件中导入torch,并得到此错误:
ModuleNotFoundError: No module named 'torch'
我也把它安装在创建的环境中:
(pytorch_project) C:Usersuser>python
Python 3.7.15 (default, Nov 24 2022, 18:44:54) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import torch
>>>
如何使它在jupyter笔记本中也工作?
最可能的原因是您没有在conda环境中安装jupyter notebook。通过
进行测试where jupyter
在你当前的环境。
如果路径不包含pytorch_project
,则需要为当前conda环境安装jupyter:
pip install jupyter
然后,如果需要,重新激活env。