Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,15 @@ You can create and run your first application with `shiny create`, the CLI will
* https://posit-dev.github.io/py-shiny/docs/api/express/
* https://posit-dev.github.io/py-shiny/docs/api/core/

If you want to do development on Shiny for Python:
If you are working from a fork you may not have the git tags from the original repo.
Git tags are required for the install to succeed. To add tags to your own fork:

```sh
git remote add upstream https://github.com/posit-dev/py-shiny.git
git fetch --tags upstream
```

Then install:

```sh
pip install -e ".[dev,test]"
Expand Down
Loading