我在导入torchtext的包是出了一个错误,ImportError: cannot import name '_log_class_usage' from 'torchtext.utils'
时间: 2024-01-21 22:04:03 浏览: 175
Pycharm中import torch报错
5星 · 资源好评率100%
这个问题可能是因为您的torchtext版本过低导致的。请尝试升级torchtext到最新版本:
```
pip install --upgrade torchtext
```
如果您已经安装了最新版本但仍然遇到此问题,请尝试重新安装torchtext:
```
pip uninstall torchtext
pip install torchtext
```
如果这些方法仍然无法解决问题,请考虑检查您的安装环境或卸载所有相关软件并重新安装。
阅读全文