Updated installation-guide.md (#180)

Update installation-guide.md

Signed-off-by: Prashanth681 <rprashanth681@gmail.com>
This commit is contained in:
Prashanth681
2025-07-18 12:36:36 +05:30
committed by GitHub
parent c05ce38159
commit b70f019253

View File

@@ -4,13 +4,48 @@
**The honest truth**: This guide looks long because we want to cover all the details, but installation is actually pretty simple. Most people are done in 2 minutes with one command!
**TL;DR for the impatient:**
### Step 1: Install the Package
**Option A: From PyPI (Recommended)**
```bash
pip install SuperClaude
SuperClaude install --quick
# That's it! 🎉
uv add SuperClaude
```
**Option B: From Source**
```bash
git clone https://github.com/NomenAK/SuperClaude.git
cd SuperClaude
uv sync
```
### 🔧 UV / UVX Setup Guide
SuperClaude v3 also supports installation via [`uv`](https://github.com/astral-sh/uv) (a faster, modern Python package manager) or `uvx` for cross-platform usage.
### 🌀 Install with `uv`
Make sure `uv` is installed:
```bash
curl -Ls https://astral.sh/uv/install.sh | sh
```
> Or follow instructions from: [https://github.com/astral-sh/uv](https://github.com/astral-sh/uv)
Once `uv` is available, you can install SuperClaude like this:
```bash
uv venv
source .venv/bin/activate
uv pip install SuperClaude
```
### ⚡ Install with `uvx` (Cross-platform CLI)
If youre using `uvx`, just run:
```bash
uvx pip install SuperClaude
```
---
## 🔧 UV / UVX Setup Guide
SuperClaude v3 also supports installation via [`uv`](https://github.com/astral-sh/uv) (a faster, modern Python package manager) or `uvx` for cross-platform usage.