Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions README-new.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 0 additions & 10 deletions docs/0001-getting-started/0002-quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
14 changes: 0 additions & 14 deletions docs/0001-getting-started/0003-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 5 additions & 2 deletions docs/0001-getting-started/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down