[오류 해결] AttributeError: np.PINF was removed in the NumPy 2.0 release. Use np.inf instead.
·
Error
발생한 오류NumPy 버전 2.0에서 np.PINF가 제거되었기 때문에 발생하는 문제이다. AttributeError: np.PINF was removed in the NumPy 2.0 release. Use np.inf instead. 해결 방법np.PINF가 사용된 코드를 찾아서 np.inf로 바꾸면 된다!기존 코드import numpy as npx = np.PINF수정된 코드import numpy as npx = np.inf Referencehttps://github.com/blue-yonder/tsfresh/issues/1088