diff --git a/docs/source/extend_kedro/common_use_cases.md b/docs/source/extend_kedro/common_use_cases.md index b57910b509..164333f247 100644 --- a/docs/source/extend_kedro/common_use_cases.md +++ b/docs/source/extend_kedro/common_use_cases.md @@ -31,7 +31,7 @@ def notebook_run(...): == ADD YOUR CUSTOM NOTEBOOK COMMAND CODE HERE == ``` -To inject additional CLI commands intended to be reused across projects, see [our plugin system](./plugins.md). An example of one such command is the `kedro viz` command introduced by the [Kedro-Viz plugin](https://github.com/kedro-org/kedro-viz). This command is intended to work on every Kedro project and therefore must be a standalone plugin. +To inject additional CLI commands intended to be reused across projects, see [our plugin system](./plugins.md). An example of one such command is the `kedro viz run` command introduced by the [Kedro-Viz plugin](https://github.com/kedro-org/kedro-viz). This command is intended to work on every Kedro project which is why it comes from a standalone plugin. ```{note} Your plugin's implementation can take advantage of other extension mechanisms such as Hooks. diff --git a/docs/source/get_started/new_project.md b/docs/source/get_started/new_project.md index a2012c0bfd..7e0c40001c 100644 --- a/docs/source/get_started/new_project.md +++ b/docs/source/get_started/new_project.md @@ -82,7 +82,7 @@ pip install kedro-viz To start Kedro-Viz, navigate to the project folder (`cd `) and enter the following in your terminal: ```bash -kedro viz +kedro viz run ``` This command automatically opens a browser tab to serve the visualisation at `http://127.0.0.1:4141/`. diff --git a/docs/source/tutorial/add_another_pipeline.md b/docs/source/tutorial/add_another_pipeline.md index c90dcb87ff..576350a715 100644 --- a/docs/source/tutorial/add_another_pipeline.md +++ b/docs/source/tutorial/add_another_pipeline.md @@ -498,7 +498,7 @@ There are a separate set of parameters for `ds_pipeline_2` with the `candidate_m However, `model_input_table` does not get parameterised as it needs to be shared between instances, so is frozen outside the scope of the namespace wrappers. -This renders as follows using `kedro viz` (hover over the datasets to see their full path) : +This renders as follows using `kedro viz run` (hover over the datasets to see their full path) : ![modular_ds](../meta/images/modular_ds.gif) diff --git a/docs/source/tutorial/create_a_pipeline.md b/docs/source/tutorial/create_a_pipeline.md index c8569379ae..f4e5eb961f 100644 --- a/docs/source/tutorial/create_a_pipeline.md +++ b/docs/source/tutorial/create_a_pipeline.md @@ -335,7 +335,7 @@ pip install kedro-viz To start Kedro-Viz, enter the following in your terminal: ```bash -kedro viz +kedro viz run ``` This command automatically opens a browser tab to serve the visualisation at `http://127.0.0.1:4141/`. Explore the visualisation at leisure, and consult the {doc}`Kedro-Viz documentation` for more detail.