Blogger Information
Blog 75
fans 0
comment 0
visits 55245
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
小猿圈python之安装Requests
聆听的博客
Original
957 people have browsed it

requests模块在很多地方都会用到,那要使用requests模块,首先就是要正确安装,安装过程比较简单,下载完源码包之后,可以轻松的将 Requests 嵌入到 Python 包里,或者安装到 site-packages 中,只需要使用几个简单命令即可。

一、获取源码

Requests 一直在 Github 上积极地进行开发和维护,可以从 Requests 源码 获取。

二、安装

将安装包进行解压缩,然后进入解压缩后的目录:

实例

# tar -zxvf master

# cd kennethreitz-requests-2041adb/

使用 pip 安装:

实例

# pip install requests

三、验证

为了验证是否安装成功,可以进入 Python 交互环境,输入 import requests:

实例

# python

  Python 3.5.2 (default, Sep  7 2016, 20:29:26)

  [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] on linux

  Type "help", "copyright", "credits" or "license" for more information.

    >>> import requests

如果导入时没有提示错误,说明已经安装成功了!然后就可以正常的导入模块使用其方法,还是很简单的,requests模块方法很多,想具体了解各个方法的使用,可以在小猿圈上系统学习一下,希望可以帮到你!

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post