📝 Update docs, use pip as it is more generic

This commit is contained in:
Sebastián Ramírez 2018-12-10 21:52:22 +04:00
parent 26ccb7620a
commit 8ec20773de
2 changed files with 8 additions and 8 deletions

View File

@ -46,14 +46,14 @@ FastAPI stands on the shoulders of giants:
## Installation
```shell
$ pip3 install fastapi
```bash
$ pip install fastapi
```
You will also need an ASGI server, for production such as <a href="http://www.uvicorn.org" target="_blank">uvicorn</a>.
```shell
$ pip3 install uvicorn
```bash
$ pip install uvicorn
```
## Example

View File

@ -46,14 +46,14 @@ FastAPI stands on the shoulders of giants:
## Installation
```shell
$ pip3 install fastapi
```bash
$ pip install fastapi
```
You will also need an ASGI server, for production such as <a href="http://www.uvicorn.org" target="_blank">uvicorn</a>.
```shell
$ pip3 install uvicorn
```bash
$ pip install uvicorn
```
## Example