From 94fcff4c909e2bc5b11f6567a14d1e8459a639d8 Mon Sep 17 00:00:00 2001 From: David Sarno Date: Fri, 5 Sep 2025 09:15:54 -0700 Subject: [PATCH] docs: install uv via official installer (curl/winget) --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4cc219d..256c7d8 100644 --- a/README.md +++ b/README.md @@ -67,11 +67,17 @@ MCP for Unity connects your tools using two components: * **Python:** Version 3.12 or newer. [Download Python](https://www.python.org/downloads/) * **Unity Hub & Editor:** Version 2021.3 LTS or newer. [Download Unity](https://unity.com/download) - * **uv (Python package manager):** + * **uv (Python toolchain manager):** ```bash - pip install uv - # Or see: https://docs.astral.sh/uv/getting-started/installation/ + # macOS / Linux + curl -LsSf https://astral.sh/uv/install.sh | sh + + # Windows (PowerShell) + winget install Astral.Sh.Uv + + # Docs: https://docs.astral.sh/uv/getting-started/installation/ ``` + * **An MCP Client:** : [Claude Desktop](https://claude.ai/download) | [Claude Code](https://github.com/anthropics/claude-code) | [Cursor](https://www.cursor.com/en/downloads) | [Visual Studio Code Copilot](https://code.visualstudio.com/docs/copilot/overview) | [Windsurf](https://windsurf.com) | Others work with manual config *
[Optional] Roslyn for Advanced Script Validation