From da0ce2e43251a12fd48aecdc5ae79ffdd4005d06 Mon Sep 17 00:00:00 2001 From: Daniel Chen Date: Mon, 7 Oct 2024 09:28:20 -0700 Subject: [PATCH] chore(docs): Update dev install instructions (#1721) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index df0869f1d..35916600f 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,8 @@ To install the latest development version: ```sh # First install htmltools, then shiny -pip install https://github.com/posit-dev/py-htmltools/tarball/main -pip install https://github.com/posit-dev/py-shiny/tarball/main +pip install git+https://github.com/posit-dev/py-htmltools.git#egg=htmltools +pip install git+https://github.com/posit-dev/py-shiny.git#egg=shiny ``` You can create and run your first application with `shiny create`, the CLI will ask you which template you would like to use. You can either run the app with the Shiny extension, or call `shiny run app.py --reload --launch-browser`.