From c8daefbe68d3685efd5cd8019bce1e7e72182f92 Mon Sep 17 00:00:00 2001 From: Tony Kipkemboi Date: Wed, 22 Jan 2025 02:10:57 -0500 Subject: [PATCH] docs: simplify installation guide - Remove redundant virtual environment instructions - Simplify project creation steps - Update UV package manager description --- docs/installation.mdx | 37 +++---------------------------------- 1 file changed, 3 insertions(+), 34 deletions(-) diff --git a/docs/installation.mdx b/docs/installation.mdx index cce2192dfe..d629c4c80b 100644 --- a/docs/installation.mdx +++ b/docs/installation.mdx @@ -112,8 +112,6 @@ Now let's get you set up! 🚀 We recommend using the YAML Template scaffolding for a structured approach to defining agents and tasks. - When you create a new project using the CLI, it automatically sets up a dedicated virtual environment for your crew project. - This ensures all your project dependencies are isolated and managed properly. @@ -141,49 +139,20 @@ Now let's get you set up! 🚀 │ └── __init__.py └── config/ ├── agents.yaml + ├── config.yaml └── tasks.yaml ``` - - - Each crew project has its own virtual environment to manage dependencies. This is different from your initial installation environment. - - - 1. Navigate to your project directory: - ```shell Terminal - cd - ``` - - 2. Activate the project's virtual environment to make sure you're in the right environment: - - **On macOS/Linux:** - ```shell Terminal - source .venv/bin/activate - ``` - - **On Windows (Command Prompt):** - ```shell Terminal - .venv\Scripts\activate.bat - ``` - - **On Windows (PowerShell):** - ```shell Terminal - .venv\Scripts\Activate.ps1 - ``` - - You'll know you're in the right environment when you see `(.venv)` at the beginning of your command prompt. - - - With the project's virtual environment activated, you can install additional tools using UV: + You can install additional tools using UV: ```shell Terminal uv add ``` - UV is our recommended package manager as it's significantly faster than pip and provides better dependency resolution. + UV is our preferred package manager as it's significantly faster than pip and provides better dependency resolution.