To use Superduper, you must have Python 3.10+ installed. Installation involves three steps: installing the base framework, installing a databackend plugin, and optionally installing use-case specific plugins.
- Install the base package
- Install a databackend plugin (e.g., MongoDB, SQL, Snowflake, or Redis)
- Install additional plugins for specific use cases (e.g.,
superduper-<plugin_name>)
# Install the base package
pip install superduper-framework >= 0.7.0
# Install a plugin for your databackend (choose one)
pip install superduper-mongodb >= 0.7.0
# or
pip install superduper-sql >= 0.7.0
# or
pip install superduper-snowflake >= 0.7.0
# or
pip install superduper-redis >= 0.7.0
# Install additional plugins for your use-case (optional)
pip install superduper-<plugin_name>