Installation

Commentary

Each language version of DeltaTraceDB is implemented entirely in its respective language. This means:

  • The Dart version is written in 100% Dart.

  • The Python version is written in 100% Python.

Because there are no cross-language bindings or native dependencies, installation is simple and requires no special setup beyond a standard Dart or Python environment.

For Dart

You can install DeltaTraceDB for Dart from pub.dev as follows:

https://pub.dev/packages/delta_trace_db/install

In your Flutter or Dart project directory, run:

dart pub add delta_trace_db

Alternatively, add the following line manually to your pubspec.yaml:

dependencies:
  delta_trace_db: any

For Python

You can install DeltaTraceDB for Python via pip:

https://pypi.org/project/delta-trace-db/

pip install delta-trace-db

Alternatively, add it to your requirements.txt file:

delta-trace-db