diff --git a/docs/local-development.mdx b/docs/local-development.mdx index 92a7a65e..bdc87068 100644 --- a/docs/local-development.mdx +++ b/docs/local-development.mdx @@ -165,9 +165,19 @@ Next, you'll need to set up the [Tinybird](https://tinybird.co) Clickhouse datab In your newly-cloned Dub repo, navigate to the `packages/tinybird` directory. - If you have `brew`, install `pipx` by running `brew install pipx`. If not, you can check [installation guide](https://pipx.pypa.io/stable/installation/) for other options. After that, install the Tinybird CLI with `pipx install tinybird-cli` (requires Python >= 3.8). - - Run `tb auth --interactive` and paste your `admin` Auth Token. + Install the Tinybird CLI by running the following command: + + + ```bash macOS/Linux + curl https://tinybird.co | sh + ``` + + ```powershell Windows + powershell -ExecutionPolicy ByPass -c "irm https://tinybird.co | iex" + ``` + + + Then, authenticate by running `tb login`.