From 3e62df8f426cd30766166d9ca9c7c94e696a1421 Mon Sep 17 00:00:00 2001 From: Swarom Muley Date: Wed, 20 May 2026 22:50:38 -0500 Subject: [PATCH] docs: fix cloned repo directory in setup docs Signed-off-by: Swarom Muley --- README.md | 4 ++-- docs/about/release-notes/current-release.md | 2 +- docs/get-started/setup.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9d551a42ad..d6344a4429 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ NeMo Platform brings NVIDIA NeMo libraries together under one CLI, Python SDK, a ```bash git clone https://github.com/NVIDIA-NeMo/nemo-platform.git -cd Platform +cd nemo-platform make bootstrap source .venv/bin/activate @@ -84,7 +84,7 @@ nemo setup --auto --start-services --install-skills --deploy-agent ## Use NeMo Platform from your coding agent -After installation, launch your coding agent (Claude Code, Codex, Cursor, OpenCode, etc) from inside the `Platform` directory. This is the primary way of interacting with the NeMo Platform. +After installation, launch your coding agent (Claude Code, Codex, Cursor, OpenCode, etc) from inside the `nemo-platform` directory. This is the primary way of interacting with the NeMo Platform. Things you can ask it to do, once the platform is running: diff --git a/docs/about/release-notes/current-release.md b/docs/about/release-notes/current-release.md index 23dec7d874..592a60694d 100644 --- a/docs/about/release-notes/current-release.md +++ b/docs/about/release-notes/current-release.md @@ -81,7 +81,7 @@ flow. ```bash git clone https://github.com/NVIDIA-NeMo/nemo-platform.git -cd Platform +cd nemo-platform make bootstrap nemo setup ``` diff --git a/docs/get-started/setup.md b/docs/get-started/setup.md index b4440644ed..7e12f20577 100644 --- a/docs/get-started/setup.md +++ b/docs/get-started/setup.md @@ -17,7 +17,7 @@ Clone the source repository and bootstrap the local environment: ```bash git clone https://github.com/NVIDIA-NeMo/nemo-platform.git -cd Platform +cd nemo-platform make bootstrap source .venv/bin/activate ```