今日在安装pytest-html时总提示timeout(如下),想着之前也碰到过这种情况,特此记录下解决方案.
timeout方案一:设置超时时间
默认超时时间15s,可加长超时时间,如100
使用pip3的时候加上--default-timeout参数,设定超时时间:
pip3 --default-timeout=100 install pytest-html
方案二:更换镜像源
默认从https://pypi.org上下载安装包,但是国内有时候访问该网站比较慢
使用pip3的时候加上-i参数,指定pip源:
pip3 install -i https://pypi.douban.com/simple pytest-html
若想永久修改:
pip config set global.index-url https://pypi.douban.com/simple
国内常用镜像源:
商业性质:
豆瓣:http://pypi.douban.com/simple/
阿里云:https://mirrors.aliyun.com/pypi/simple/
教育性质:
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple/
网友评论