mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-15 19:30:47 +08:00
20 lines
392 B
Markdown
20 lines
392 B
Markdown
# Installation
|
|
|
|
You can add **FastAPI Users** to your FastAPI project in a few easy steps. First of all, install the dependency:
|
|
|
|
## With SQLAlchemy support
|
|
|
|
```sh
|
|
pip install 'fastapi-users[sqlalchemy]'
|
|
```
|
|
|
|
## With Beanie support
|
|
|
|
```sh
|
|
pip install 'fastapi-users[mongodb]'
|
|
```
|
|
|
|
---
|
|
|
|
That's it! In the next section, we'll have an [overview](./configuration/overview.md) of how things work.
|