Skip to content

Commit 39f26a5

Browse files
manuelcorpasclaude
andcommitted
fix: move gh install below clone, add Linux/Windows options
The quickstart block should work on any OS with just git and python3. gh is only needed for submission, not for running the demo. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f26bc8b commit 39f26a5

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

docs/hackathon/index.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -144,18 +144,24 @@ That is it. You do not need tests, figures, or a complete pipeline. A focused, w
144144
**Recommended before arrival** (saves time on the day):
145145

146146
```bash
147-
# Install GitHub CLI and authenticate
148-
brew install gh # macOS
149-
gh auth login # follow the prompts
150-
151147
# Clone the repo and run a demo
152148
git clone https://github.com/ClawBio/ClawBio.git
153149
cd ClawBio
154150
pip3 install -r requirements.txt
155151
python3 skills/pharmgx-reporter/pharmgx_reporter.py --demo
156152
```
157153

158-
If you do not have `gh` installed, you can submit your PR through the GitHub web interface instead. Both routes are covered in the [Submit](submit.md) guide.
154+
To submit your work you will need the **GitHub CLI** (`gh`). Install it if you don't have it:
155+
156+
```bash
157+
brew install gh # macOS
158+
sudo apt install gh # Debian / Ubuntu
159+
winget install GitHub.cli # Windows
160+
```
161+
162+
Then authenticate: `gh auth login`
163+
164+
If you prefer not to install `gh`, you can submit your PR through the GitHub web interface instead. Both routes are covered in the [Submit](submit.md) guide.
159165

160166
Food and drinks will be provided (pizza at 13:30).
161167

0 commit comments

Comments
 (0)