From 054c51ad3e92ba07a446b58d75bead48119c41d1 Mon Sep 17 00:00:00 2001 From: Thomas Boyer-Chammard <49786685+thomas-bc@users.noreply.github.com> Date: Thu, 11 Sep 2025 14:51:08 -0700 Subject: [PATCH] Revise install instructions with latest project structure (#4139) --- docs/getting-started/installing-fprime.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting-started/installing-fprime.md b/docs/getting-started/installing-fprime.md index 51651c6151..2fa2987e6d 100644 --- a/docs/getting-started/installing-fprime.md +++ b/docs/getting-started/installing-fprime.md @@ -57,10 +57,10 @@ The entrypoint to developing with F´ is creating a new project. This will clone fprime-bootstrap project ``` - This command will ask for some input. Sample responses are below: ``` - [1/1] Project name (MyProject): MyProject + [1/2] Project repository name [my-fprime-project]: my-project + [2/2] Project top-level namespace [MyFprimeProject]: MyProject ``` 1. This commands perform the following actions: @@ -73,7 +73,7 @@ This command will ask for some input. Sample responses are below: Once the project is created, activate the virtual environment to use the F´ tool suite. ``` -cd MyProject +cd my-project . fprime-venv/bin/activate ``` > [!WARNING]