From 3a8f7720449126cf356657c47c499c31130bb956 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Mon, 21 Jul 2025 15:12:09 -0700 Subject: [PATCH] Fix webapp README: correct pip install command The README had incorrect syntax for pip install. Changed from `pip install requirements.txt` to `pip install -r requirements.txt`. --- webapp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/README.md b/webapp/README.md index 45ee754a..b12432eb 100644 --- a/webapp/README.md +++ b/webapp/README.md @@ -2,7 +2,7 @@ To run this app locally, install the requirements and run `shiny run`. ``` $ cd webapp -$ pip install requirements.txt +$ pip install -r requirements.txt $ shiny run ```