Installation
Installing AI-Task
Prerequisites
- Python 3.8 or higher
- pip (Python package installer)
Installation Methods
Using pip
The simplest way to install AI-Task is using pip:
pip install ai-taskFrom Source
To install from source:
Clone the repository:
git clone https://github.com/yourusername/ai-task.git cd ai-taskInstall in development mode:
pip install -e .
Environment Setup
Set up your API keys:
# For Anthropic's Claude API export ANTHROPIC_API_KEY=your_key_hereVerify the installation:
python -c "import ai_task; print(ai_task.__version__)"
Next Steps
After installing AI Task, you can:
- Follow the Quickstart Guide
- Read the Manual
- Explore Examples