使用pip安装requests模块遇到问题及解决方法

时间:2024-03-13 07:11:47


新手利用pip安装requests模块,遇到一些问题,总结出如下:

顺利安装流程

在python所在的路径输入pip install requests使用pip安装requests模块遇到问题及解决方法
等待downloading和最后installing完成并提示requests successfully installed,恭喜pip安装requests模块顺利完成!
使用pip安装requests模块遇到问题及解决方法

安装报错及解决方法

Unknown or unsupported command ‘install’

直接在users\administrator路径下输入pip install requests,报错Unknown or unsupported command ‘install’
使用pip安装requests模块遇到问题及解决方法
使用COMMAND命令安装第三方库,碰到“Unknown or unsupported command ‘install’”这种报错,可能存在多个路径有pip执行程序,如loadrunner。
使用where pip,找到所有 pip的路径
进入Python下的那个pip路径进行安装,见第一步 顺利安装流程使用pip安装requests模块遇到问题及解决方法

Fatal error in launcher: Unable to create process using

在python所在的路径输入pip install requests 报错Fatal error in launcher: Unable to create process using使用pip安装requests模块遇到问题及解决方法
可能是版本太低,可以尝试在cmd中使用:python -m pip install进行安装,会看到报错提示更新到新的版本。

使用pip安装requests模块遇到问题及解决方法
使用命令python -m pip install --upgrade pip跟新pip版本
等待pip更新完毕,见第一步 顺利安装流程
使用pip安装requests模块遇到问题及解决方法