AttributeError: module ‘numpy‘ has no attribute ‘long‘

import numpy as np
print(np.long)

AttributeError: module ‘numpy‘ has no attribute ‘long‘_第1张图片

在跑towhee官网案例里的clip4clip时居然报这个错了,
但是网上的博客都是讲的没有np.integer这个属性
别的博客中integer的解决方案应该和这个long的解决方案一样
重装numpy,我原先的版本是1.24.1,重装为:1.23.0

pip install numpy==1.23.0

numpy官网的文档解释

但是因为要整合faiss和towhee所以我将towhee的源码改了,还好只有一处调用了np.long

在这里插入图片描述

你可能感兴趣的:(python,numpy)