Skip to content

Commit 21ca43c

Browse files
authored
Update README.md
1 parent 8f1de2e commit 21ca43c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fastapi/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Get Started With FastAPI
22

3-
This repository contains code snippets discussed in the associated tutorial on [Get Started With FastAPI](https://realpython.com/get-started-with-fastapi/).
3+
This repository contains code snippets discussed in the associated tutorial [Get Started With FastAPI](https://realpython.com/get-started-with-fastapi/).
44

55
## Installation
66

@@ -10,6 +10,6 @@ The recommended way to install FastAPI is with the `[standard]` extra dependenci
1010
$ python -m pip install "fastapi[standard]"
1111
```
1212

13-
The quotes around `"fastapi[standard]"` ensure the command works correctly across different [terminals](https://realpython.com/terminal-commands/) and operating systems. With the command above you install several useful packages, including the [FastAPI CLI](https://fastapi.tiangolo.com/fastapi-cli/) and [uvicorn](https://www.uvicorn.org/), an ASGI server for running your application.
13+
The quotes around `"fastapi[standard]"` ensure the command works correctly across different [terminals](https://realpython.com/terminal-commands/) and operating systems. With the command above, you install several useful packages, including the [FastAPI CLI](https://fastapi.tiangolo.com/fastapi-cli/) and [uvicorn](https://www.uvicorn.org/), an ASGI server for running your application.
1414

1515
You can also use the `requirements.txt` file in this folder and run `python -m pip install -r requirements.txt` to install the standard dependencies of FastAPI.

0 commit comments

Comments
 (0)