Python 安装 request
一、使用 pip 进行安装
# 在 windows 系统下
pip install requests
# 在 linux 系统下
sudo pip install requests
二、使用 easy_install 进行安装
easy_install requests
三、手动安装
1、下载requests
http://www.lfd.uci.edu/~gohlke/pythonlibs
在这个网站上面有很多 python 的第三方库文件,ctrl+f 搜索requests 。点击 .whl 文件下载。
2:、添加到 lib 中
将 .whl 文件下载下来后,将文件重命名,将后缀名从 .whl 改为 .zip ,然后解压文件,得到两个文件夹,将第一个文件夹,也就是 requests 文件夹复制到 python 的安装目录下的 lib 目录下。
3、测试
输入 import requests,如果没有报错,则成功安装