📜  Requests-环境设置

📅  最后修改于: 2020-10-21 08:29:03             🧑  作者: Mango


 

在本章中,我们将进行请求的安装。要开始使用Requests模块,我们需要先安装Python 。所以我们将继续努力-

  • 安装Python
  • 安装要求

安装Python

转到Python官方网站: https:// www。 Python.org / downloads / ,如下所示,然后单击可用于Windows,Linux / Unix和Mac OS的最新版本。根据您可用的64位或32位操作系统下载Python 。

Python下载

下载完成后,点击.exe文件,然后按照以下步骤在系统上安装Python 。

适用于Windows的Python

Python软件包管理器,即pip也会默认安装上述安装。要使其在您的系统上全局运行,请将Python的位置直接添加到PATH变量中。在安装开始时会显示相同的内容,以记住选中“添加到PATH”复选框。万一忘记检查,请按照以下步骤添加到PATH。

要添加到PATH,请遵循以下步骤:

右键单击您的计算机图标,然后单击属性>高级系统设置。

它将显示如下屏幕:

系统属性

单击上面显示的环境变量。它将显示如下屏幕:

环境变量

选择路径,然后单击编辑按钮,在末尾添加Python的位置路径。现在,让我们检查Python版本。

检查Python版本

E:\prequests>python --version
Python 3.7.3

安装要求

现在我们已经安装了Python ,我们将安装Requests。

一旦安装了Python,Python包管理器即PIP也将得到安装。以下是检查点子版本的命令。

E:\prequests>pip --version
pip 19.1.1 from c:\users\xxxxx\appdata\local\programs\python\python37\lib\site-
packages\pip (python 3.7)

我们已经安装了pip,版本是19.1.1。现在,将使用pip安装请求模块。

该命令在下面给出-

pip install requests
E:\prequests>pip install requests
Requirement already satisfied: requests in c:\users\xxxx\appdata\local\programs
\python\python37\lib\site-packages (2.22.0)
Requirement already satisfied: certifi>=2017.4.17 in c:\users\kamat\appdata\local\
programs\python\python37\lib\site-packages (from requests) (2019.3.9)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in c:\use
rs\xxxxx\appdata\local\programs\python\python37\lib\site-packages (from requests
) (1.25.3)
Requirement already satisfied: idna<2.9,>=2.5 in c:\users\xxxxxxx\appdata\local\
programs\python\python37\lib\site-packages (from requests) (2.8)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in c:\users\xxxxx\appdata\
local\programs\python\python37\lib\site-packages (from requests) (3.0.4)

我们已经安装了模块,因此在命令提示符中说“ Requirement已经满足”;如果未安装,它将下载所需的安装软件包。

要检查已安装的请求模块的详细信息,可以使用以下命令-

pip show requests
E:\prequests>pip show requests
Name: requests
Version: 2.22.0
Summary: Python HTTP for Humans.
Home-page: http://python-requests.org
Author: Kenneth Reitz
Author-email: me@kennethreitz.org
License: Apache 2.0
Location: c:\users\xxxxx\appdata\local\programs\python\python37\lib\site-package
S
Requires: certifi, idna, urllib3, chardet
Required-by:

请求模块的版本是2.22.0。