'googletrans' 패키지가 작동하지 않음: 'NoneType' 객체에 'group' 속성이 없음
문제:
'googletrans' 패키지를 사용하려는 사용자에게 'NoneType' 개체에 '그룹' 속성이 없는 오류가 발생했습니다.
해결책:
알파 버전 업데이트(06.12.20)
다음 명령을 사용하여 'googletrans'의 공식 알파 버전을 설치하세요.
pip install googletrans==3.1.0a0
알파 버전이 작동하지 않는 경우 번역 서비스 URL을 지정하세요.
<code class="python">from googletrans import Translator translator = Translator(service_urls=['translate.googleapis.com']) translator.translate("Der Himmel ist blau und ich mag Bananen", dest='en')</code>
업데이트 10.12.20
다음 명령을 사용하여 다른 수정 사항을 설치합니다.
pip install googletrans==4.0.0-rc1
대체 옵션: google_trans_new
위 수정사항으로 문제가 해결되지 않으면 'google_trans_new' 대체 패키지 사용을 고려해 보세요.
<code class="python">#pip install google_trans_new from google_trans_new import google_translator translator = google_translator() translate_text = translator.translate('สวัสดีจีน',lang_tgt='en') print(translate_text)</code>
위 내용은 기사 내용과 일치하는 영어 질문 제목은 다음과 같습니다. * 내 \'googletrans\' 패키지에 \'NoneType\' 개체에 \'group\' 속성이 없음 오류가 발생하는 이유는 무엇인가요? * \'NoneType\' 개체에 \'goo 속성이 없는 \'group\' 오류를 수정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!