mac电脑TypeError: 'numpy._DTypeMeta' object is not subscriptable
时间: 2023-11-22 21:49:33 浏览: 101
Vue 报错TypeError: this.$set is not a function 的解决方法
根据提供的引用内容,这个错误是由于numpy和opencv的版本不匹配导致的。解决方法是升高或降低它们的版本。具体来说,你可以尝试以下步骤来解决这个问题:
1.卸载当前的numpy和opencv版本:
```shell
pip uninstall numpy
pip uninstall opencv-python
```
2.安装与你的环境匹配的numpy和opencv版本:
```shell
pip install numpy==1.25.2
pip install opencv-python==4.5.2.54
```
3.检查是否成功安装:
```shell
import numpy
import cv2
```
如果没有报错,说明安装成功。
阅读全文