Python报错:TypeError: __init__() got an unexpected keyword argument 'io_loop' 原因及解决方案

Posted python大师

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python报错:TypeError: __init__() got an unexpected keyword argument 'io_loop' 原因及解决方案相关的知识,希望对你有一定的参考价值。

今天打开一个Python文件时,报错提示:

TypeError: __init__() got an unexpected keyword argument ‘io_loop‘ 

       明明是从旧电脑上拷贝到新电脑上的文件,之前运行是OK的,新电脑上运行怎么就报错了呢?

 

错误原因:

       配置python环境时,默认tornado版本是最新的版本(恰好我新电脑重新配置了python环境,所以安装了最新版本),但是在4.0版本之后就废弃了io_loop参数。

 

解决方案:

 1. 先卸载当前安装的tornado

pip uninstall tornado

2. 安装低版本的tornado

pip install tornado==4.1 

以上是关于Python报错:TypeError: __init__() got an unexpected keyword argument 'io_loop' 原因及解决方案的主要内容,如果未能解决你的问题,请参考以下文章

Python_报错:TypeError: file must have 'read' and 'readline' attributes

Django :执行 python manage.py makemigrations 时报错 TypeError: __init__() missing 1 required positional a

转python 调用super()初始化报错“TypeError: super() takes at least 1 argument”

python引入模块报错:TypeError: ‘module‘ object is not callable,解决办法记录

python引入模块报错:TypeError: ‘module‘ object is not callable,解决办法记录

Python_异常:TypeError: write() argument must be str, not list