Python

googletrans 'NoneType' object has no attribute 'group' 해결법

검정비니 2022. 7. 28. 21:13
728x90
반응형
pip install googletrans

위의 방법을 통해서 google trans를 설치하게 되면 번역 기능을 실행할 때 다음 에러가 발생한다:

AttributeError: 'NoneType' object has no attribute 'group'

 

이를 해결하는 가장 간단한 방법은 이미 깔려있는 버전을 지우고 에러가 없는 버전으로 다시 설치하는 것이다.

pip uninstall googletrans
pip install googletrans==3.1.0a0

 

이제는 번역 기능을 실행해도 에러가 안 나올 것이다.

from googletrans import Translator
translator = Translator()
print(translator)

sentence = input("언어를 감지할 문장을 입력해주세요 : ")
detected = translator.detect(sentence)
print(detected.lang)

 

반응형