---
title: "Installation"
description: "Install Agency Swarm in just 2 simple steps."
icon: "box"
---
## Installation
1. **Install Python**
Download and install the latest version of Python from the [official Python website](https://www.python.org/downloads/).
2. **Create a Virtual Environment**
Navigate to your project directory and create a virtual environment using `venv`:
```bash
python -m venv venv
```
3. **Activate the Virtual Environment**
On Mac or Linux:
```bash
source venv/bin/activate
```
On Windows:
```bash
venv\Scripts\activate
```
Simply run the following command:
Make sure you are in the virtual environment before installing the package.
```bash
pip install agency-swarm
```
## Next Steps
When it comes to building your first AI Agency, you have three options:
Build your own agents and tools from the ground up. Perfect to understand the framework's structure and create a
fully customized solution.
Start with the production-ready [Agency Starter Template](./getting-started/starter-template) to quickly get a working agency with real tools and examples.
Use Cursor IDE to streamline the entire agent development process. Recommended for both beginners and advanced
developers.