mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-16 03:40:23 +08:00

* Start to write documentation * Add docs favicon * Add routes documentation * Add doc about dependency callables * Add information about how to make authenticated calls
18 lines
333 B
Markdown
18 lines
333 B
Markdown
# Installation
|
|
|
|
You can add **FastAPI Users** to your FastAPI project in a few easy steps. First of all, install the dependency:
|
|
|
|
```sh
|
|
pip install fastapi-users
|
|
```
|
|
|
|
...or if you're already in the future:
|
|
|
|
```sh
|
|
pipenv install fastapi-users
|
|
```
|
|
|
|
---
|
|
|
|
That's it! Now, let's have a look at our [User model](./configuration/model.md).
|