feat: update docs on Poetry -> uv

This commit is contained in:
Eduardo Chiarotti
2024-10-08 16:38:27 -03:00
parent 3f1b86d7aa
commit 7cd68183f7
11 changed files with 55 additions and 7387 deletions

View File

@@ -24,7 +24,7 @@ $ pip install 'crewai[tools]'
## Creating a New Project
In this example, we will be using poetry as our virtual environment manager.
In this example, we will be using `uv` as our virtual environment manager.
To create a new CrewAI project, run the following CLI command:
@@ -163,11 +163,11 @@ def email_summarizer_task(self) -> Task:
## Installing Dependencies
To install the dependencies for your project, you can use Poetry. First, navigate to your project directory:
To install the dependencies for your project, you can use `uv`. Running the following command is optional since when running `crewai run`, it will automatically install the dependencies for you.
```shell
$ cd my_project
$ crewai install
$ crewai install (optional)
```
This will install the dependencies specified in the `pyproject.toml` file.