You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes! In fact this a crucial aspect to how packages like `{ipyleaflet}` work. In
205
205
`{ipyleaflet}`'s case, each [individual marker is a widget](https://ipyleaflet.readthedocs.io/en/latest/layers/circle_marker.html) which gets attached to a `Map()` via `.add_layer()`.
206
206
207
-
### Does `{ipyshiny}` work with `shiny static`?
207
+
### Does `{shinywidgets}` work with `shiny static`?
208
208
209
209
Shiny's `shiny static` CLI command allows some Shiny apps to be statically served (i.e.,
210
210
run entirely in the browser). [py-shinylive](https://github.com/rstudio/py-shinylive)
211
211
(the Python package behind `shiny static`) does have some special support for
212
-
`{ipyshiny}` and it's dependencies, which should make most widgets work out-of-the-box.
212
+
`{shinywidgets}` and it's dependencies, which should make most widgets work out-of-the-box.
213
213
214
214
In some cases, the package(s) that you want to use may not come pre-bundled with
215
-
`{ipyshiny}`; and in that case, you can [include a `requirements.txt`
215
+
`{shinywidgets}`; and in that case, you can [include a `requirements.txt`
216
216
file](https://pyshiny.netlify.app/examples/#extra-packages) to pre-install those other
217
217
packages
218
218
219
219
## Troubleshooting
220
220
221
-
If after [installing](#installation)`{ipyshiny}`, you have trouble rendering widgets,
222
-
first try running the "hello world" ipywidgets [example](https://github.com/rstudio/ipyshiny/blob/main/examples/ipywidgets/app.py). If that doesn't work, it could be that you have an unsupported version
221
+
If after [installing](#installation)`{shinywidgets}`, you have trouble rendering widgets,
222
+
first try running the "hello world" ipywidgets [example](https://github.com/rstudio/shinywidgets/blob/main/examples/ipywidgets/app.py). If that doesn't work, it could be that you have an unsupported version
223
223
of a dependency like `{ipywidgets}` or `{shiny}`.
224
224
225
225
If you can run the "hello world" example, but "3rd party" widget(s) don't work, first
226
226
check that the extension is properly configured with `jupyter nbextension list`. Even if
227
227
the extension is properly configured, it still may not work right away, especially if
228
228
that widget requires initialization code in a notebook environment. In this case,
229
-
`{ipyshiny}` probably won't work without providing the equivalent setup information to
229
+
`{shinywidgets}` probably won't work without providing the equivalent setup information to
0 commit comments