From feebbca43fd5ba94e38262c4951e8ad3456828fa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:34:13 +0000 Subject: [PATCH 1/2] Initial plan From 5c2badf8988af2c549798050d5e4081ae758a913 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:56 +0000 Subject: [PATCH 2/2] Remove placeholder install script URLs from documentation Co-authored-by: SomeRandmGuyy <127457986+SomeRandmGuyy@users.noreply.github.com> --- README-new.md | 9 ++++++--- docs/0001-getting-started/0002-quick-start.md | 10 ---------- docs/0001-getting-started/0003-installation.md | 14 -------------- docs/0001-getting-started/README.md | 7 +++++-- 4 files changed, 11 insertions(+), 29 deletions(-) diff --git a/README-new.md b/README-new.md index 428aba5..89e6250 100644 --- a/README-new.md +++ b/README-new.md @@ -93,11 +93,14 @@ For comprehensive documentation, see our [docs/](docs/) directory with professio ## 🚀 Quick Start -### One-Command Installation +### Installation ```bash -# Install FSL Continuum with all dependencies -curl -sSL https://install.fsl-continuum.sh | bash +# Clone and install FSL Continuum +git clone https://github.com/swcstudio/fsl-continuum.git +cd fsl-continuum +pip install -r requirements.txt +pip install -e . ``` ### Your First Pipeline diff --git a/docs/0001-getting-started/0002-quick-start.md b/docs/0001-getting-started/0002-quick-start.md index 490617d..b4c5f19 100644 --- a/docs/0001-getting-started/0002-quick-start.md +++ b/docs/0001-getting-started/0002-quick-start.md @@ -28,17 +28,7 @@ pip install -e . fsl --version ``` -### Quick Setup with Installer -```bash -# One-command setup (includes all dependencies) -curl -sSL https://install.fsl-continuum.sh | bash - -# Or download and run -wget https://install.fsl-continuum.sh -chmod +x install.fsl-continuum.sh -./install.fsl-continuum.sh -``` ## ⚡ Your First FSL Pipeline diff --git a/docs/0001-getting-started/0003-installation.md b/docs/0001-getting-started/0003-installation.md index 911b9c8..33d5a8a 100644 --- a/docs/0001-getting-started/0003-installation.md +++ b/docs/0001-getting-started/0003-installation.md @@ -44,20 +44,6 @@ pip install fsl-continuum fsl --version ``` -## Quick Setup with Installer - -For a faster, one-command setup: - -```bash -# Download and run installer -curl -sSL https://install.fsl-continuum.sh | bash - -# Or download first -wget https://install.fsl-continuum.sh -chmod +x install.fsl-continuum.sh -./install.fsl-continuum.sh -``` - ## Docker Installation ```bash diff --git a/docs/0001-getting-started/README.md b/docs/0001-getting-started/README.md index 2ac9ca5..283f369 100644 --- a/docs/0001-getting-started/README.md +++ b/docs/0001-getting-started/README.md @@ -11,8 +11,11 @@ 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. Clone and install FSL Continuum +git clone https://github.com/swcstudio/fsl-continuum.git +cd fsl-continuum +pip install -r requirements.txt +pip install -e . # 2. Initialize in your project cd your-project