# 🔧 Installation

To install OpenAGI, lets practice some best practice by creating a virtual environment and installing the package.

#### Setup a virtual environment

```bash
# For Mac users
python3 -m venv venv
source venv/bin/activate

# For Windows users
python -m venv venv
venv/scripts/activate

# to create virtual env using particular python version (in Windows)
py -3.11 -m venv venv
```

#### Install the Package

```bash
pip install openagi
```
