From 3d5f7da8bd63c9c59381dd81634926cb05056bde Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:33:50 +0000 Subject: [PATCH 1/2] Initial plan From faafe106e6df4ddc9bb27d50117434cd13541026 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:37:04 +0000 Subject: [PATCH 2/2] fix: Replace placeholder installation script with pip installation instructions Co-authored-by: SomeRandmGuyy <127457986+SomeRandmGuyy@users.noreply.github.com> --- docs/0001-getting-started/README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/0001-getting-started/README.md b/docs/0001-getting-started/README.md index 2ac9ca5..72c5d2a 100644 --- a/docs/0001-getting-started/README.md +++ b/docs/0001-getting-started/README.md @@ -11,8 +11,13 @@ Welcome to FSL Continuum! This section will help you get up and running quickly. ## 🚀 Quick Path ```bash -# 1. Install FSL Continuum -curl -sSL https://install.fsl-continuum.sh | bash +# 1. Install FSL Continuum via pip +pip install fsl-continuum + +# Or install from source +git clone https://github.com/your-org/fsl-continuum.git +cd fsl-continuum +pip install -e . # 2. Initialize in your project cd your-project