Skip to content

Commit

Permalink
Add poetry setup
Browse files Browse the repository at this point in the history
  • Loading branch information
rlam3 committed Nov 30, 2023
1 parent ba5a07a commit 0444666
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions website/docs/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,22 @@ The following command will deactivate the current `conda` environment:
conda deactivate
```

### Option 3: poetry

Another option is with `poetry`, which is a dependency manager for Python. You can install it by following [this doc](https://python-poetry.org/docs/#installation),
and then create a virtual environment as below:
```bash
poetry init
poetry shell

poetry add pyautogen
```

The following command will deactivate the current `poetry` environment:
```bash
exit
```

Now, you're ready to install AutoGen in the virtual environment you've just created.

## Python
Expand Down

0 comments on commit 0444666

Please sign in to comment.