欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ValueError: Invalid configuration: - Deprecated option 'domaincontroller': use 'http_authenticator

程序员文章站 2022-04-28 11:59:28
...

python3.7 使用 pyspider模块报错ValueError: Invalid configuration:   - Deprecated option 'domaincontroller': use 'http_authenticator

下载pyspider模块后,使用 pyspider all 命令出现上述错误。

解决方式:

ValueError: Invalid configuration: - Deprecated option 'domaincontroller': use 'http_authenticator

找到如上图所示的文件(由于python安装的位置不同,这里的文件位置也不同,具体看报错信息中的位置即可),找到209行

'domaincontroller': NeedAuthController(app),

将上面的修改为:

'http_authenticator':{
    'HTTPAuthenticator':NeedAuthController(app),
},

重新执行命令

pyspider all

 

相关标签: 启动pyspider报错