怎么在Python3中安装请求模块

  介绍

今天就跟大家聊聊有关怎么在Python3中安装请求模块,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

操作系统:Windows Server 2012 x64

<强> Python3安装

官网下载最新的适合Windows的安装包。

下载下来的python-3.7.4-amd64。exe,直接拷贝到测试环境的机器上,双击安装即可,需要注意的是,最好勾选3.7 AddPython路径,这样后期直接在cmd窗口中就可以调用python命令了。

<强>请求模块的依赖包检查

在可以上网且已安装python的机器上检查请求模块需要哪些依赖包,要是没有依赖包,直接下载一个直接安装最好。

在cmd命令窗口中输入脉冲显示请求

C: \ \用户Laycher> pip  show 请求   名称:请求   版本:2.18.4   摘要:,Python  HTTP  for 人类。   主页:http://python-requests.org   作者:Kenneth 那个宿舍叫赖茨   Author-email: me@kennethreitz.org   许可:Apache  2.0   位置:d: \ program 文件\ python3 \ lib \网站   要求:chardet, urllib3,, idna, certifi   要求:

下载依赖包模块和请求模块

certifi-2019.9.11-py2.py3-none-any.whl      chardet-3.0.4-py2.py3-none-any.whl      idna - 2.8 - py2.py3 any.whl——没有      requests-2.22.0-py2.py3-none-any.whl      urllib3-1.25.6-py2.py3-none-any。whl

<>强安装模块

将以上下载的文件传到测试环境。离线装模块。

安装命令为pip安装XXXXX。whl

切记,先安装依赖包,如果直接安装请求,由于有依赖包,还是会去连外网找依赖包。

D: \软件祝辞pip  install  certifi-2019.9.11-py2.py3-none-any.whl   Processing  d: \软件\ certifi-2019.9.11-py2.py3-none-any.whl   Installing  collected 包:certifi   Successfully  installed  certifi-2019.9.11   D: \软件祝辞pip  install  chardet-3.0.4-py2.py3-none-any.whl   Processing  d: \软件\ chardet-3.0.4-py2.py3-none-any.whl   Installing  collected 包:chardet   Successfully  installed  chardet-3.0.4   D: \软件祝辞pip  idna install  2.8 - py2.py3 any.whl——没有   Processing  d: \软件\ idna - 2.8 - py2.py3 any.whl——没有   Installing  collected 包:idna   Successfully  idna installed  2.8   D: \软件祝辞pip  install  urllib3-1.25.6-py2.py3-none-any.whl   Processing  d: \软件\ urllib3-1.25.6-py2.py3-none-any.whl   Installing  collected 包:urllib3   Successfully  installed  urllib3-1.25.6   D: \软件祝辞pip  install  requests-2.22.0-py2.py3-none-any.whl   Processing  d: \软件\ requests-2.22.0-py2.py3-none-any.whl   Requirement  already 满意:idna  c: \ \用户拷贝本地管理员\ appdata \ \掠夺   公羊\ python \ python37 \ lib \ site-packages (得到请求==2.22.0),(2.8)   Requirement  already 满意:chardet  c: \ \用户拷贝本地管理员\ appdata \ \ p   python程序\ \ python37 \ lib \ site-packages (得到请求==2.22.0),(3.0.4)   Requirement  already 满意:urllib3  c: \ \用户拷贝本地管理员\ appdata \ \ p   python程序\ \ python37 \ lib \ site-packages (得到请求==2.22.0),(1.25.6)   Requirement  already 满意:certifi  c: \ \用户拷贝本地管理员\ appdata \ \ p   python程序\ \ python37 \ lib \ site-packages (得到请求==2.22.0),(2019.9.11)   Installing  collected 包:请求   Successfully  installed  requests-2.22.0

看完上述内容,你们对怎么在Python3中安装请求模块有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注行业资讯频道,感谢大家的支持。

怎么在Python3中安装请求模块