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
* fix link changes from #291
* fix link in template
* links in overview
* try using an absolute path for the include file
testing to see if this will fix the last warning in #292
---------
Co-authored-by: Daniel Chen <[email protected]>
Copy file name to clipboardExpand all lines: docs/comp-r-shiny.qmd
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Shiny [express](express-vs-core.qmd) is a new, more expressive, way to build PyS
24
24
# Getting started
25
25
26
26
R users tend to use the R console to install and run Shiny while Python requires you to use the terminal.
27
-
To get started you can do the following (or see the [installation instructions](install-create-run.qmd) for a more in-depth explanation):
27
+
To get started you can do the following (or see the [installation instructions](/get-started/install.qmd) for a more in-depth explanation):
28
28
29
29
1. In your terminal, create a new directory with `mkdir <my_directory>` and navigate into it with `cd <my_directory>`
30
30
2. Install Shiny. We strongly recommend using a virtual environment for this as it will eliminate dependency resolution headaches and make deployment easier.
Copy file name to clipboardExpand all lines: docs/jupyter-widgets.qmd
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -535,9 +535,9 @@ For more layout inspiration, check out the [Layout Gallery](/layouts).
535
535
536
536
## Shinylive
537
537
538
-
Examples on this page are powered by [shinylive](shinylive.qmd), a tool for running Shiny apps in the browser (via [pyodide](https://pyodide.org/en/stable/)).
538
+
Examples on this page are powered by [shinylive](/get-started/shinylive.qmd), a tool for running Shiny apps in the browser (via [pyodide](https://pyodide.org/en/stable/)).
539
539
Generally speaking, apps that use shinywidgets should work in shinylive as long as the widget and app code is supported by pyodide.
540
-
The shinywidgets package itself comes pre-installed in shinylive, but you'll need to include any other dependencies [in the `requirements.txt` file](shinylive.qmd#requiring-extra-packages-with-requirements.txt).
540
+
The shinywidgets package itself comes pre-installed in shinylive, but you'll need to include any other dependencies [in the `requirements.txt` file](/get-started/shinylive.qmd#requiring-extra-packages-with-requirements.txt).
Copy file name to clipboardExpand all lines: docs/overview.qmd
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,8 @@ In the [next article](user-interfaces.qmd), we'll cover more user interface (UI)
20
20
::: {.callout-tip}
21
21
## Editable examples
22
22
23
-
Many examples on this site have a code editor for modifying the source code for a Shiny app (which runs entirely in the browser, thanks to [shinylive](shinylive.qmd)).
24
-
If you'd like to run any examples locally, first [installand run](install-create-run.qmd)Shiny locally, then copy/paste relevant code into the `app.py` file (created by `shiny create`).
23
+
Many examples on this site have a code editor for modifying the source code for a Shiny app (which runs entirely in the browser, thanks to [shinylive](/get-started/shinylive.qmd)).
24
+
If you'd like to run any examples locally, first [install](/get-started/install.qmd) Shiny locally, then [create and run](/get-started/create-run.qmd)by copy/paste relevant code into the `app.py` file (created by `shiny create`).
25
25
:::
26
26
27
27
@@ -520,7 +520,7 @@ For a more in-depth look at reactivity, check out the [reactivity article](react
520
520
521
521
### Starter templates {#templates}
522
522
523
-
Once you've [installed](install-create-run.qmd) Shiny, the `shiny create` CLI command provides access to a collection of useful starter templates. This command walks you through a series of prompts to help you get started quickly with a helpful example. One great option is the dashboard template, which can be created with:
523
+
Once you've [installed](/get-started/install.qmd) Shiny, the `shiny create` CLI command provides access to a collection of useful starter templates. This command walks you through a series of prompts to help you get started quickly with a helpful example. One great option is the dashboard template, which can be created with:
0 commit comments