Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Installation.md #456

Merged
merged 3 commits into from
Oct 28, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions website/docs/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,27 @@ 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
gagb marked this conversation as resolved.
Show resolved Hide resolved
gagb marked this conversation as resolved.
Show resolved Hide resolved
```

The following command will deactivate the current `venv` environment:
```bash
deactivate
```

### Option 2: conda

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
gagb marked this conversation as resolved.
Show resolved Hide resolved
```

The following command will deactivate the current `conda` environment:
```bash
conda deactivate
```

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