首页 > 后端开发 > Python教程 > 以下是一些符合文章内容的英文问题标题: * 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 \'goo

以下是一些符合文章内容的英文问题标题: * 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 \'goo

Susan Sarandon
发布: 2024-10-29 07:50:02
原创
273 人浏览过

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

* 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 版本不起作用,请指定翻译服务 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>
    登录后复制

以上是以下是一些符合文章内容的英文问题标题: * 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 \'goo的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板