feat: Add crewai install CLI command (#1203)

* feat: Add crewai install CLI command

* feat: Add crewai install to the docs and force now crewai run
This commit is contained in:
Eduardo Chiarotti
2024-08-17 08:41:53 -03:00
committed by GitHub
parent dbede37121
commit ef2502a14f
7 changed files with 38 additions and 37 deletions

View File

@@ -109,8 +109,7 @@ To install the dependencies for your project, use Poetry:
```shell
$ cd <project_name>
$ poetry lock
$ poetry install
$ crewai install
```
## Running Your Pipeline Project
@@ -121,12 +120,6 @@ To run your pipeline project, use the following command:
$ crewai run
```
or
```shell
$ poetry run <project_name>
```
This will initialize your pipeline and begin task execution as defined in your `main.py` file.
## Deploying Your Pipeline Project