From 4b7986a412cb9edc248e0d0455456263650fb7c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer?= Date: Mon, 12 Jan 2026 15:43:09 +0300 Subject: [PATCH] Revise SDK installation steps in README Updated installation instructions for the SDK. --- README.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 729cc17..7d9ef92 100644 --- a/README.md +++ b/README.md @@ -31,22 +31,21 @@ in Python. ## Installation -For now, you can install the SDK using the following commands: +Install the SDK using pip or uv: ```bash -# Create a directory for the SDK -mkdir sdk - -# Clone the repository -git clone https://github.com/Universal-Commerce-Protocol/python-sdk.git sdk/python +pip install ucp-sdk +``` -# Navigate to the directory -cd sdk/python +or -# Install dependencies -uv sync +```bash +uv init # if not already in an initialized project +uv add ucp-sdk ``` +> **Note:** `uv add` requires an initialized project directory. If you're not starting a new project, ensure you're in a directory with a `pyproject.toml` file, or run `uv init` first. + ## Development ### Prerequisites