[오류해결] googletrans 'NoneType' object has no attribute 'group'

YB·2022년 6월 6일
0

Python

목록 보기
1/1

https://pypi.org/project/googletrans/
googletrans 모듈을 다운받기 위해 상기 링크에 들어갔다.


이렇게 나와 있길래 구글 코랩 가서 pip install googletrans를 그대로 치니

!pip install googletrans 

라고 해야 한다고 나왔다.
!를 붙이고 다시 실행해서 성공적으로 다운로드 받았지만

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

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

이걸 실행할 때

detected = translator.detect(sentence)

여기서 계속

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

이런 오류가 발생했다.

스택오버플로우에서 확인해본 결과,

이런 말이 있길래 코랩에서 삭제 후 재설치를 하기로 했다.

!pip uninstall googletrans
!pip install googletrans==3.1.0a0 

실행결과, 오류가 더이상 나지 않고 잘 작동되었다 :)

profile
An aspiring FE developer who studied Economics, Business, and Entrepreneurship in 🇰🇷 🇸🇬 🇺🇸 🇨🇦

0개의 댓글