
windows
Top_xiao
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python3 requests爬虫访问HTTPS, HTTP 站点报错SSLError
搞了半天, 有时报错有时又不报错, 最后把代理关掉了, 然后就不报错了。 一开始关闭代理还是挺好使的, 然后过了一会儿, 又不好使了。 以下两种方案, 任选其一, 我是可以了, #这个是使版本适配。 adapter = SSLAdapter('TLSv1') s = requests.Session() s.mount('https://', adapter) #这个...原创 2019-11-23 20:09:11 · 2368 阅读 · 0 评论 -
Python pip install SSL异常处理,[SSL: DECRYPTION_FAILED_OR_BAD_RECORD_MAC]
处理办法: 打开以下目录,并创建pip文件夹 C:\Users\用户\AppData\Roaming 进入pip文件夹,创建pip.ini文件,内容如下 换一个阿里的源。 [global] index-url = http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host = mirrors.aliyun.com ...原创 2019-11-23 16:30:20 · 1426 阅读 · 0 评论 -
sublime vscode 配置c++
windows 下 sublime 配置 c++ { "cmd": ["g++", "${file}", "-o", "${file_path}/${file_base_name}","-Wall","-Wextra","-g"], "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", "working_di...原创 2019-06-29 16:03:32 · 387 阅读 · 0 评论