Lesson 1: Setting up your environment
By the end of this lesson:
You will know how to set up an environment to use and develop agents.
System requirements
The AEA framework can be used on Windows
, Ubuntu/Debian
and MacOS
.
You need Python 3.8 or higher on your system.
Setup¶
Step 1
Create a new working directory. Let's call it my_aea_projects
. This is where you will create your agent projects. Enter my_aea_projects
.
Step 2
Add an empty directory called packages
. This is a local registry* for your agents' components.
* You will learn more about this in the next unit.
Run the following command to create the directory structure:
You should now have the following directory structure:
Virtual Environment (optional)¶
We highly recommend using a virtual environment so that your setup is isolated from the rest of your system. This prevents clashes and ensures consistency across dependencies.
You can use any common virtual environment manager for Python. In this lesson, we will cover pipenv
and poetry
. If you do not have either, install one.
Step 3
To exit a virtual environment:
Press Ctrl + D
. Try existing the environment and entering again via pipenv shell
or poetry shell
.
Installation¶
Initialisation¶
By initialising the AEA framework, you will pick an author handle which will be used in any agent or agent component you create.