From f16163c59a6194a416b538a240a252381890c6ef Mon Sep 17 00:00:00 2001 From: 23f3003202 <23f3003202@ds.study.iitm.ac.in> Date: Fri, 20 Feb 2026 22:27:18 +0530 Subject: [PATCH] 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. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 64f56cac..52b11d08 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,14 @@ community that make adding new functionality easy. [Werkzeug]: https://werkzeug.palletsprojects.com/ [Jinja]: https://jinja.palletsprojects.com/ +##Installation + +Install Flask using pip: + +```bash +pip install Flask +``` + ## A Simple Example ```python