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

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

  • Update
  • 顺利安装流程
  • 安装报错及解决方法
    • Unknown or unsupported command 'install'
    • Fatal error in launcher: Unable to create process using

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

Update

当利用pip安装模块时,如果电脑存在多个路径的pip,可以直接pip.ext install +相应模块
例如pip.ext install beautifulsoup4
使用pip安装requests模块遇到问题及解决方法_第1张图片

顺利安装流程

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

安装报错及解决方法

Unknown or unsupported command ‘install’

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

Fatal error in launcher: Unable to create process using

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

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

你可能感兴趣的:(Python,python,pip)