AttributeError: module 'towhee' has no attribute 'glob'
时间: 2023-09-06 09:09:07 浏览: 362
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误说明在 `towhee` 模块中没有名为 `glob` 的属性。`glob`是Python标准库中的一个模块,用于查找符合特定模式的文件路径。如果你想使用 `glob` 功能,确保你已经正确安装了 `towhee` 模块,并且在使用之前正确导入它:
```python
import towhee
```
如果你已经导入了 `towhee` 模块并且仍然遇到此错误,请检查 `towhee` 模块的文档或者参考其他资源来了解如何正确使用它的功能。
阅读全文