Skip to content

Commit

Permalink
docs(readme): Note that tags are necessary for install (#1858)
Browse files Browse the repository at this point in the history
  • Loading branch information
mccalluc authored Feb 18, 2025
1 parent 1e9b868 commit ab2a338
Showing 1 changed file with 9 additions and 1 deletion.
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

0 comments on commit ab2a338

Please sign in to comment.