🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 1.2 请求库的安装 第三方库:requests、selenium、aiohttp ## 1.相关链接 * PyPI:[https://pypi.org/](https://pypi.org/) * 驱动下载 * 官方网站:[https://sites.google.com/a/chromium.org/chromedriver](https://sites.google.com/a/chromium.org/chromedriver) * 官网下载地址:[https://www.seleniumhq.org/download/](https://www.seleniumhq.org/download/) ## 2.pip安装 ```text pip install 包名 ``` ## 3.wheel ```text pip install xxx.whl ``` ## 4.验证安装成功 ```text python3 >>> import 包名 ``` 如果没有报错,就代表安装成功了