> For the complete documentation index, see [llms.txt](https://openagi.aiplanet.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://openagi.aiplanet.com/getting-started/installation.md).

# 🔧 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
```
