mirror of
https://github.com/K-Dense-AI/claude-scientific-skills.git
synced 2026-01-26 16:58:56 +08:00
Add uv installation instructions
This commit is contained in:
29
README.md
29
README.md
@@ -162,11 +162,38 @@ https://mcp.k-dense.ai/claude-scientific-skills/mcp
|
|||||||
|
|
||||||
## ⚙️ Prerequisites
|
## ⚙️ Prerequisites
|
||||||
|
|
||||||
- **Python**: 3.8+ (3.10+ recommended for best compatibility)
|
- **Python**: 3.9+ (3.12+ recommended for best compatibility)
|
||||||
|
- **uv**: Python package manager (required for installing skill dependencies)
|
||||||
- **Client**: Claude Code, Cursor, or any MCP-compatible client
|
- **Client**: Claude Code, Cursor, or any MCP-compatible client
|
||||||
- **System**: macOS, Linux, or Windows with WSL2
|
- **System**: macOS, Linux, or Windows with WSL2
|
||||||
- **Dependencies**: Automatically handled by individual skills (check `SKILL.md` files for specific requirements)
|
- **Dependencies**: Automatically handled by individual skills (check `SKILL.md` files for specific requirements)
|
||||||
|
|
||||||
|
### Installing uv
|
||||||
|
|
||||||
|
The skills use `uv` as the package manager for installing Python dependencies. Install it using the instructions for your operating system:
|
||||||
|
|
||||||
|
**macOS and Linux:**
|
||||||
|
```bash
|
||||||
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||||
|
```
|
||||||
|
|
||||||
|
**Windows:**
|
||||||
|
```powershell
|
||||||
|
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
|
||||||
|
```
|
||||||
|
|
||||||
|
**Alternative (via pip):**
|
||||||
|
```bash
|
||||||
|
pip install uv
|
||||||
|
```
|
||||||
|
|
||||||
|
After installation, verify it works by running:
|
||||||
|
```bash
|
||||||
|
uv --version
|
||||||
|
```
|
||||||
|
|
||||||
|
For more installation options and details, visit the [official uv documentation](https://docs.astral.sh/uv/).
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 💡 Quick Examples
|
## 💡 Quick Examples
|
||||||
|
|||||||
Reference in New Issue
Block a user