Quick Setup

Ethereal SDK Quick Setup Guide πŸš€

Welcome to the Ethereal SDK quick setup guide! Follow these steps to install, configure, and run your first agentic AI system. πŸ€–

Prerequisites βœ…

Before starting, make sure you have the following installed:

  • Python 3.8+ (Check your version with python --version)

  • Git (Optional, for cloning the repository)

  • pip or Poetry (For managing dependencies)

If Python is not installed, you can download it from Python.org.

Step 1: Clone the Repository (Optional) πŸ§‘β€πŸ’»

If you want to get the latest version from GitHub, run:

git clone https://github.com/your-repo/ethereal-sdk.git
cd ethereal-sdk

To avoid dependency conflicts, it's recommended to create a virtual environment:

python -m venv venv
source venv/bin/activate   # macOS/Linux 🍏
venv\Scripts\activate    # Windows πŸͺŸ

Step 3: Install Dependencies βš™οΈ

You can install the dependencies using either pip or Poetry.

Using pip:

pip install -r requirements.txt

Or using Poetry:

poetry install 

Step 4: Run Examples πŸ’‘

After installation, try running a sample agent to ensure everything is set up properly:

python -m examples.integration_example

Last updated