본문 바로가기
ERROR

[파이썬 에러] module ‘librosa’ has no attribute ‘display’

by Nuridal_class 2022. 1. 21.
728x90
728x90

필요한 라이브러리를 가져오고 하위에 있는 함수들을 쓸 때 인식을 못하는 오류가 발생할 때가 있다

import librosa
librosa.display.specshow(...);
AttributeError : module 'librosa' has no attribute 'display'

위와 같은 오류가 발생할 때 해결 방법은 아래와 같다

 

1. 쓰이는 함수 명시해주기

import librosa.display

위와 같이 명시를 해주면 오류없이 코드가 진행될 것이다

 

나에게 어려운 오류가 없어질때까지...

728x90
300x250