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)
반응형
'Python' 카테고리의 다른 글
파이썬에서 파일 크기 알아내기 (0) | 2022.09.14 |
---|---|
pyaudio 설치가 잘 안되는 경우 (0) | 2022.09.14 |
onnxruntime 실행 시 (core-dump) 에러가 발생할 경우 해결법 (0) | 2022.04.01 |
requirements.txt 활용하기 (0) | 2022.04.01 |
socket.send()와 sendall() (0) | 2022.03.30 |