调用mediapipe报错AttributeError: module 'numpy' has no attribute 'typeDict'
时间: 2024-05-22 20:09:09 浏览: 224
解决:slate报错 AttributeError: module ‘importlib._bootstrap’ has no attribute ‘SourceFileLoade
出现 "AttributeError: module 'numpy' has no attribute 'typeDict'" 的错误可能是因为您的 numpy 版本过高,导致调用 Mediapipe 时出现冲突。您可以尝试卸载当前版本的 numpy,并安装一个较低的版本,例如:
```python
pip uninstall numpy
pip install numpy==1.19.3
```
如果问题依然存在,您可以尝试在程序开头添加以下代码,强制指定 numpy 的版本:
```python
import numpy as np
np.version.version = "1.19.3"
```
阅读全文