From eadbf1de7db83ebaa722d7ebe8af44bd45ac4685 Mon Sep 17 00:00:00 2001 From: Daniel Chen Date: Fri, 4 Oct 2024 14:53:33 -0700 Subject: [PATCH 1/2] update dev install instructions fixes #1720 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index df0869f1d..cb1c430bc 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 +pip install git+https://github.com/posit-dev/py-shiny.git ``` 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`. From abf79b7197b8f9e42a68d81a306f0bdd07e2730d Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Mon, 7 Oct 2024 12:21:25 -0400 Subject: [PATCH 2/2] Use `#egg=proj` on github url --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cb1c430bc..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 git+https://github.com/posit-dev/py-htmltools.git -pip install git+https://github.com/posit-dev/py-shiny.git +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`.