nonebot2/website/docs/start/install-driver.mdx

48 lines
848 B
Plaintext
Raw Normal View History

---
sidebar_position: 1
2022-02-05 11:46:33 +00:00
description: 通过脚手架或 pip 安装驱动器
---
import Asciinema from "@site/src/components/Asciinema";
# 安装驱动器
NoneBot 在默认安装情况下内置了 `none` 驱动器,其他驱动器如 `fastapi`、`httpx`、`aiohttp` 则需要额外安装。
## 查看
2022-02-05 11:46:33 +00:00
前往[商店](/store)即可查看所有驱动器。
2022-02-05 11:46:33 +00:00
或者使用 nb-cli 命令行查看:
```bash
nb driver list
```
## 安装
2022-02-05 11:46:33 +00:00
前往[商店](/store)点击复制 nb-cli 安装命令至命令行执行即可安装。
或者自行输入命令安装:
```bash
nb driver install <driver-name>
```
或者使用交互模式安装:
```bash
nb driver install
```
2022-02-05 11:46:33 +00:00
也可以使用 pip 安装
```bash
pip install <driver-package>
```
<Asciinema
url="https://asciinema.org/a/464686.cast"
options={{ theme: "monokai", poster: "npt:2.8" }}
/>