Add basic pip installation instruction to README

Adds a minimal "Installation" section with a basic
`pip install Flask` command to help new users get started.

No other changes included.
This commit is contained in:
23f3003202 2026-02-20 22:27:18 +05:30 committed by GitHub
parent c34d6e81fd
commit f16163c59a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,6 +17,14 @@ community that make adding new functionality easy.
[Werkzeug]: https://werkzeug.palletsprojects.com/ [Werkzeug]: https://werkzeug.palletsprojects.com/
[Jinja]: https://jinja.palletsprojects.com/ [Jinja]: https://jinja.palletsprojects.com/
##Installation
Install Flask using pip:
```bash
pip install Flask
```
## A Simple Example ## A Simple Example
```python ```python