From 2607b9ce8be990a45ae0fd6cc006e482f06569e2 Mon Sep 17 00:00:00 2001 From: Henry Fontanier Date: Mon, 24 Jun 2024 20:37:40 +0200 Subject: [PATCH] Update introduction.mdx The `cd` commands assumes the user is already inside of the `01` directory (the repo's root), which is not likely to be the case as the previous command clones the repository into the current working directory. --- docs/getting-started/introduction.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/introduction.mdx b/docs/getting-started/introduction.mdx index 1b14e3a..14d7372 100644 --- a/docs/getting-started/introduction.mdx +++ b/docs/getting-started/introduction.mdx @@ -34,7 +34,7 @@ For windows, please refer to the [setup guide](/getting-started/setup#windows). ```bash # Clone the repo and navigate into the software directory git clone https://github.com/OpenInterpreter/01.git -cd software +cd 01/software # Install dependencies and run 01 poetry install