首頁 >後端開發 >Python教學 >以下是一些符合文章內容的英文問題標題: * Why is my \'googletrans\' package throwing a \'NoneType\' object has no attribute \'group\' error? * How to fix the \'NoneType\' object 有 no attribute \'group\' error in \'goo

以下是一些符合文章內容的英文問題標題: * Why is my \'googletrans\' package throwing a \'NoneType\' object has no attribute \'group\' error? * How to fix the \'NoneType\' object 有 no attribute \'group\' error in \'goo

Susan Sarandon
Susan Sarandon原創
2024-10-29 07:50:02219瀏覽

以下是一些符合文章内容的英文问题标题:

* Why is my 'googletrans' package throwing a 'NoneType' object has no attribute 'group' error?
* How to fix the 'NoneType' object has no attribute 'group' error in 'googletrans'?
* What are the solutions for the 'googletr

“googletrans”包不起作用:“NoneType”對像沒有屬性“group”

問題:

嘗試使用「googletrans」套件的使用者遇到了「NoneType」物件沒有屬性「group」的錯誤。

解決方案:

Alpha 版本更新(06.12.20)

  • 使用下列指令安裝「googletrans」的官方Alpha 版本:

    pip install googletrans==3.1.0a0
  • 如果alpha 版本不起作用,請指定翻譯服務網址:

    <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>

以上是以下是一些符合文章內容的英文問題標題: * Why is my \'googletrans\' package throwing a \'NoneType\' object has no attribute \'group\' error? * How to fix the \'NoneType\' object 有 no attribute \'group\' error in \'goo的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn