Skip to content

Commit

Permalink
Update Installation.md
Browse files Browse the repository at this point in the history
Replace autogen->pyautogen in env setup to avoid confusion

Related issue: #211
  • Loading branch information
gagb authored Oct 27, 2023
1 parent 1215017 commit ed3c6e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/docs/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ When not using a docker container, we recommend using a virtual environment to i

You can create a virtual environment with `venv` as below:
```bash
python3 -m venv autogen
python3 -m venv pyautogen
source autogen/bin/activate
```

Expand All @@ -17,8 +17,8 @@ source autogen/bin/activate
Another option is with `Conda`, Conda works better at solving dependency conflicts than pip. You can install it by following [this doc](https://docs.conda.io/projects/conda/en/stable/user-guide/install/index.html),
and then create a virtual environment as below:
```bash
conda create -n autogen python=3.10 # python 3.10 is recommended as it's stable and not too old
conda activate autogen
conda create -n pyautogen python=3.10 # python 3.10 is recommended as it's stable and not too old
conda activate pyautogen
```

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

0 comments on commit ed3c6e1

Please sign in to comment.