cannot import name 'Counter' from '_collections' (unknown location)
时间: 2023-11-13 08:02:33 浏览: 124
ml_collections:ML集合是专为ML用例设计的Python集合库
这个错误通常是由于 Python 程序中的 _collections 库没有 Counter 函数导致的。试试运行以下命令更新你的 Python 环境:
```
pip install collections
```
如果这个命令不能解决问题,你可以考虑查看你的 Python 版本,或者查看你的代码中是否有其它错误。
阅读全文