AttributeError: module 'numpy' has no attribute 'int128'
时间: 2023-08-05 22:04:42 浏览: 363
这个错误是由于numpy版本问题引起的。在较新的numpy版本中,numpy.int128已被弃用并删除。为了解决这个问题,你可以尝试以下两个解决方案之一:
1. 重新安装numpy:你可以使用pip uninstall numpy命令卸载当前的numpy版本,然后使用pip install numpy==1.22命令安装1.22版本的numpy。这样可以回退到一个较旧的版本,其中仍然包含numpy.int128属性。\[1\]
2. 更新requirements.txt文件:如果你在训练YOLO模型时遇到这个问题,可以检查requirements.txt文件中numpy的版本要求。将其修改为大于等于1.18.5但小于1.24的版本。然后再次运行pip install -r requirements.txt命令,确保安装的numpy版本符合要求。\[2\]
希望这些解决方案能够帮助你解决AttributeError: module 'numpy' has no attribute 'int128'的问题。
#### 引用[.reference_title]
- *1* [AttributeError: module numpy has no attribute int. 报错解决方案](https://blog.csdn.net/qq_42732229/article/details/130429209)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* [AttributeError: module numpy has no attribute int .报错解决方案](https://blog.csdn.net/weixin_46669612/article/details/129624331)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文