python3.7.3安装pyspider遇到的坑

原文链接: http://www.cnblogs.com/my_captain/p/11028317.html

接着上一篇,本来以为pyspider装成功了,后来失业pyspider all验证时,发现又报错了:

python3.7.3安装pyspider遇到的坑_第1张图片

原因是从python 3.7开始async和await已经加入保留的关键字中,所以async不能最为函数的参数名

 

使用Notepad++将run.py中的async统一改为async1,重新运行pyspider all

python3.7.3安装pyspider遇到的坑_第2张图片

发现tornado_fetcher.py中也有async,继续修改

 

发现竟然没有启动app和5000端口

python3.7.3安装pyspider遇到的坑_第3张图片

 此时再去访问http://localhost:5000端口是没用的,因为没有启动

 python3.7.3安装pyspider遇到的坑_第4张图片

 

 

 

将weibu目录下的app.py中的async改一下,再次启动pyspider all:

python3.7.3安装pyspider遇到的坑_第5张图片

 

后来终于在网上找到了答案:

最后定位在了wsgidav3.x问题,pyspider会默认安装wsgdav3.x,解决办法是先把3.x卸载,再装2.x ( pip install wsgidav 会默认安装 2.x),为了保险起见,使用pip安装时加上具体版本号

python -m pip install wsgidav==2.4.1

 

然后pyspider all,发现app和5000端口被启用了,访问http://localhost:5000,发现也ok了

python3.7.3安装pyspider遇到的坑_第6张图片

 

 python3.7.3安装pyspider遇到的坑_第7张图片

 

 

 

参考文章

pyspider安装中出现的一系列问题

关于pyspider这个问题你遇到了吗?

 

 

 

转载于:https://www.cnblogs.com/my_captain/p/11028317.html

你可能感兴趣的:(python3.7.3安装pyspider遇到的坑)