Installation
Follow these steps to set up AgentOpera in your environment.
π Installation with Conda Environment
Prerequisites
Python 3.10 or higher
Conda package manager
π Step 1: Create a Conda Environment
First, create a new Conda environment and activate it:
# Create a new environment named agentopera-env with Python 3.10
conda create -n agentopera-env python=3.10# Activate the newly created environment
conda activate agentopera-envπ Step 2: Install AgentOpera
Install the AgentOpera package using pip:
# Install the latest version from PyPI
pip install agentoperaπ Step 3: Verify the Installation
Verify that AgentOpera has been installed correctly:
Step 4 (Optional): Install Dependencies
If you need development or testing capabilities, you can install additional dependencies:
π» Installing from Source (Development Mode)
If you want to contribute to AgentOpera development, follow these steps to install it from source:
π§ Troubleshooting
If you encounter issues during installation, try the following steps:
Ensure your Conda environment is properly activated.
Update pip to the latest version:
pip install --upgrade pip.Check that you meet the minimum Python version requirement (3.10+).
If a dependency installation fails, try installing it separately.
If issues persist, please submit a problem report on GitHub Issues.
π Next Steps
After installation, refer to our Quickstart guide to learn how to build and deploy multi-agent systems with AgentOpera.
Last updated