【Python】导入Field时报错ImportError: cannot import name ‘Field‘

在使用from torchtext.data import Field导入Field的时候报错
方法1:
修改成下面的导入方式

from torchtext.legacy.data import Field

方法2:
卸载torchtext,安装老版本的torchtext

pip uninstall torchtext
pip install torchtext==0.6.0

以上两种方法均可,但是还是推荐第一种

你可能感兴趣的:(Pytorch,Python学习笔记,缓存,leetcode,算法)