Python cmd pip报错,pip安装requests超时

window10
python 3.7.4

电脑重装后python第三方库没有了。重新下载就发现好多错误。

  1. pip install requests报错

显示:Fatal error in launcher: Unable to create process using '"f:\python.exe" "F:\python\Scripts\pip.exe" install request'
其中 “f:\python.exe” “F:\python\Scripts\pip.exe” 是python安装路径。
解决
1.先转到 F:\python\Scripts\ 路径。
2.再用

python pip.exe install requests

结果到了第二层

2.安装超时
Python cmd pip报错,pip安装requests超时_第1张图片
解决:

python pip.exe --timeout=100 install requests

因为pip安装默认超过15s为超时

随之来到第三层

3.依旧超时 提示更新
Python cmd pip报错,pip安装requests超时_第2张图片
那好 就先更新
按它其实的吧 执行:python -m pip install --upgrade pip
结果依旧超时 但好歹这次看到了进度条吧
Python cmd pip报错,pip安装requests超时_第3张图片
4.最终解决 使用国内代理

python -m pip install --upgrade pip -i https://mirrors.ustc.edu.cn/pypi/web/simple/

其中https://mirrors.ustc.edu.cn/pypi/web/simple/是中国科技大学的镜像地址
Python cmd pip报错,pip安装requests超时_第4张图片
超快有木有

最后检测一下pip
Python cmd pip报错,pip安装requests超时_第5张图片
安装requests库

Python cmd pip报错,pip安装requests超时_第6张图片

完成!

你可能感兴趣的:(报错,python)