本来用的scrapy的版本是:2.5.1
AttributeError: module 'OpenSSL.SSL' has no attribute 'SSLv3_METHOD'
是因为pyopenssl的版本问题(我是pyopenssl-23.0.0),卸载后,下pyopenssl-22.0.0版本(不知道其他版本行不行)
pip uninstall pyopenssl
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyopenssl==22.0.0
AttributeError: module ‘lib‘ has no attribute ‘OpenSSL_add_all_algorithms
是因为cryptography版本过高(我是39.0.2),卸载下载36.0.2版本
pip uninstall cryptography
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple cryptography==36.0.2
因能力有限,其他问题无法解决,以后遇到问题会慢慢补充,希望能帮到大家