Files
fastapi-users/docs/installation.md
Vlad Hoi 89cff15c6b Updated docs to support pip install via zsh (#619)
* Updated docs to support pip install via zsh

* Changed docs to escape square brackets

Co-authored-by: Vlad Hoi <vlad.hoi@ronati.com>
2021-05-02 08:42:30 +02:00

32 lines
520 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 MongoDB support
```sh
pip install 'fastapi-users[mongodb]'
```
## With Tortoise ORM support
```sh
pip install 'fastapi-users[tortoise-orm]'
```
## With ormar support
```sh
pip install 'fastapi-users[ormar]'
```
---
That's it! Now, let's have a look at our [User model](./configuration/model.md).