Python

AttributeError: module 'scipy.sparse' has no attribute 'coo_array'

summerorange 2022. 12. 12. 23:19
반응형

AttributeError: module 'scipy.sparse' has no attribute 'coo_array' 

가 뜨고, 

nextworkx 라이브러리를 사용하고 있다면

2022.12.12일 월요일 기준으로

networkx가 최신 버전 2.8.8, scipy는 1.8.1 이면 작동한다

# requirements.txt

networkx==2.8.8
scipy==1.8.1

networkx 라이브러리를 다운그레이드 해서 2.7이나 2.6으로 해 봤는데

그렇게 하면 

pagerank에서 문제가 생김.

그냥 둘 다 업데이트 윗버전 호환으로 해주니 된다.

 

 

반응형