docs(readme): add explicit install step for quick start

This commit is contained in:
tboyila 2026-04-19 18:27:01 +05:30
parent 2ac89889f4
commit e55ffdb5b7

View file

@ -19,6 +19,14 @@ community that make adding new functionality easy.
## A Simple Example
Install Flask first:
```bash
pip install flask
```
Then create `app.py`:
```python
# save this as app.py
from flask import Flask
@ -30,6 +38,8 @@ def hello():
return "Hello, World!"
```
Run the development server:
```
$ flask run
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)