企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 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 包名 ``` 如果没有报错,就代表安装成功了