python3 安装 pyspider 遇到的一些坑-女黑客 - Powered by Discuz! Archiver

nvhack 发表于 2021-1-20 09:55:50

python3 安装 pyspider 遇到的一些坑

使用python3.62成功,笔者也尝试用3.75版本,报错是另外的问题,按照网络上的方法没有成功,于是改成python3.62,按照下面方法即可成功。
pip install pyspider -i https://pypi.tuna.tsinghua.edu.cn/simple
出现问题,需要单装 pycurl 下载对应版本即可
链接:https://pan.xunlei.com/s/VMRSur2rEPDz6ho4M_8Ac95qA1
提取码:jc2h

解决 Deprecated option ‘domaincontroller’: use ‘http_authenticator.domain_controller’ instead
pip uninstall wsgidav
pip install wsgidav==2.4.1ImportError: cannot import name DispatcherMiddleware错误

#卸载
python -m pip uninstall werkzeug
#安装指定版本
python -m pip install werkzeug==0.16.0


页: [1]
查看完整版本: python3 安装 pyspider 遇到的一些坑