Python开发环境配置----repuests

Python开发环境配置----repuests,selenium,chromedriver

运行控制台使用pip安装repuests,selenium,

输入 pip3 install requests 安装requests
如果pip版本过低输入 python -m pip install --upgrade pip 将pip更新到最新版本

Python开发环境配置----repuests_第1张图片
如果出现权限问题如图就找到python所在的文件夹配置一下用户权限

随后再同样方法安装repuests。

安装chromedriver

chromedriver是用来配合自动化测试工具selenium的,有他才可以在chrome上爬取数据
百度chromedriver就可以进行下载
安装chromedriver时一定要注意与chrome对应的版本 版本不对应无法运行
解压将.exe文件复制到python下的Scripts目录下即可 如图
Python开发环境配置----repuests_第2张图片
验证安装 控制台输入chromedriver即可
Python开发环境配置----repuests_第3张图片

你可能感兴趣的:(Python开发环境配置----repuests)