Installation
Prerequisites
Feluda requires Python 3.10 or higher.
Basic Installation
Install Feluda using pip:
pip install feluda
Optional Dependencies
Feluda supports optional dependencies for different media types:
Audio Processing
pip install feluda[audio]
Video Processing
pip install feluda[video]
Image Processing
pip install feluda[image]
All Dependencies
pip install feluda[all]
Development Installation
For development, clone the repository and install in editable mode:
git clone https://github.com/tattle-made/feluda.git
cd feluda
pip install -e .
Development Dependencies
pip install -e .[dev]
Operator Dependencies
Some operators may require additional dependencies. Check the individual operator documentation for specific requirements.
Verification
After installation, you can verify it works:
import feluda
print(feluda.__version__)
Getting Help
Check the examples for usage patterns
Review the API documentation for detailed information
Open an issue on GitHub for bugs.