From bc50b15eadaa67a56cb813abfd4063cf86aeb404 Mon Sep 17 00:00:00 2001 From: Kye Gomez Date: Sat, 14 Jun 2025 11:22:48 -0700 Subject: [PATCH] install docs --- docs/swarms/install/install.md | 35 +++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/docs/swarms/install/install.md b/docs/swarms/install/install.md index 881a300c..3a1b0668 100644 --- a/docs/swarms/install/install.md +++ b/docs/swarms/install/install.md @@ -34,6 +34,37 @@ Before you begin, ensure you have the following installed: pip install swarms ``` +=== "UV Installation" + + UV is a fast Python package installer and resolver written in Rust. It's significantly faster than pip and provides better dependency resolution. + + === "Basic Installation" + + ```bash + # Install UV first + curl -LsSf https://astral.sh/uv/install.sh | sh + + # Install swarms using UV + uv pip install swarms + ``` + + === "Development Installation" + + ```bash + # Clone the repository + git clone https://github.com/kyegomez/swarms.git + cd swarms + + # Install in editable mode + uv pip install -e . + ``` + + For desktop installation with extras: + + ```bash + uv pip install -e .[desktop] + ``` + === "Development Installation" === "Using virtualenv" @@ -290,8 +321,10 @@ Before you begin, ensure you have the following installed: === "Cargo install" - Get started with the Rust implementation of Swarms: + Get started with the Rust implementation of Swarms. [Get started with the docs here](https://docs.swarms.world/en/latest/swarms_rs/overview/) ```bash cargo add swarms-rs ``` + +