Skip to content

Commit 0444666

Browse files
committed
Add poetry setup
1 parent ba5a07a commit 0444666

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

website/docs/Installation.md

+16
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,22 @@ The following command will deactivate the current `conda` environment:
3131
conda deactivate
3232
```
3333

34+
### Option 3: poetry
35+
36+
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),
37+
and then create a virtual environment as below:
38+
```bash
39+
poetry init
40+
poetry shell
41+
42+
poetry add pyautogen
43+
```
44+
45+
The following command will deactivate the current `poetry` environment:
46+
```bash
47+
exit
48+
```
49+
3450
Now, you're ready to install AutoGen in the virtual environment you've just created.
3551

3652
## Python

0 commit comments

Comments
 (0)