Target: Windows 10/11 users who have never installed Python or R before. WSL (Windows Subsystem for Linux) is not required — everything works natively on Windows.
If you already have some of these installed, the diagnostic skill (/setup-medsci from inside Claude Code) will tell you what to skip.
- Press Windows key, type "PowerShell".
- Right-click Windows PowerShell → Run as Administrator.
Most installers below need admin rights.
winget is built into Windows 11 and recent Windows 10. Verify:
winget --versionIf missing, install App Installer from the Microsoft Store (https://www.microsoft.com/store/productId/9NBLGGH4NNS1).
winget install --id Python.Python.3.11 -eImportant: After install, close PowerShell and reopen it (so the PATH refreshes).
Verify:
python --versionExpected: Python 3.11.x
If you see Python 2.x.x or "command not found", see common-issues.md → "Windows Python PATH".
winget install --id RProject.R -eVerify (after closing/reopening PowerShell):
Rscript --versionExpected: R scripting front-end version 4.x.x
Recommended GUI: RStudio.
winget install --id Posit.RStudio -ewinget install --id OpenJS.NodeJS -eVerify (close/reopen PowerShell):
node --versionExpected: v20.x.x
winget install --id Git.Git -eVerify:
git --versionOption A — Desktop app (easiest): Download from https://claude.ai/download and install.
Option B — Via winget (if available):
winget install --id Anthropic.Claude -eVerify:
claude --versionAfter install, run claude once → it opens your browser to log in to your Anthropic account.
- Download Zotero from https://www.zotero.org/download/ and install.
- Open Zotero → Edit → Preferences → Sync → log in.
- Install Better BibTeX: download
.xpifrom https://github.com/retorquere/zotero-better-bibtex/releases/latest → in Zotero, Tools → Add-ons → gear icon → Install Add-on From File → select the downloaded.xpi. - Restart Zotero.
In Claude Code, run:
/setup-medsci
You should see a checklist with all green ✅ marks. If anything is ❌, the checklist tells you which step to revisit.
cd $HOME
git clone https://github.com/Aperivue/medsci-skills.git
cd medsci-skills
.\installers\install-windows.cmdOr double-click install-windows.cmd in File Explorer (Allow → Yes when SmartScreen warns; the script is open-source and viewable in the repo).
See mcp-setup.md for Zotero, Google Drive, and PubMed MCP integration.
Try Demo 1:
cd $HOME\medsci-skills\demo\01_wisconsin_bcThen in Claude Code: /orchestrate --e2e
Expected: a complete IMRAD manuscript + ROC curves + STARD compliance report in ~10 minutes.
Issues? See common-issues.md.
- PowerShell vs Command Prompt: Use PowerShell. Most install commands assume PowerShell.
- Antivirus warnings: Windows Defender or third-party AV may flag
git,python, orclaudeinstallers as "unrecognized." This is normal for newly-released versions — click More info → Run anyway if the source is the official one above. - PATH after install: Always close and reopen PowerShell after installing a new tool, otherwise the new command isn't found yet.
- OneDrive interference: If you cloned the repo into a OneDrive-synced folder (Documents, Desktop), some scripts may stall. Move the repo to
C:\Users\YourName\medsci-skillsinstead.