Python安装第三方库,报错超时: Read timed out.

1、安装beautifulsoup4

>pip install beautifulsoup4

报错超时: Read timed out.

2、解决办法:pip --default-timeout=100 install -U beautifulsoup4

3、Beautiful Soup 是一个可以从HTML或XML文件中提取数据的Python库.它能够通过你喜欢的转换器实现惯用的文档导航,查找,修改文档的方式.BeautifulSoup配合Request使用,能大大提高爬虫效率。

原文地址:https://www.cnblogs.com/qy1234/p/9306449.html