Skip to content

๐Ÿš€ Getting Started

๐Ÿ”จ Installation

These installation instructions assume that you have conda installed and added to your path.

  1. Create a virtual environment (or modify an existing one).

    conda create -n "<my_name>" python=3  # Skip if using existing environment.
    conda activate <my_name>
    
  2. [Pip installation] Install the trulens-eval pip package from PyPI.

    pip install trulens-eval
    
  3. [Local installation] If you would like to develop or modify TruLens, you can download the source code by cloning the TruLens repo.

    git clone https://github.com/truera/trulens.git
    
  4. [Local installation] Install the TruLens repo.

    cd trulens/trulens_eval
    pip install -e .
    

๐Ÿคฟ Ready to dive in?

๐Ÿ˜ Community

๐Ÿ Releases

Releases

Releases are organized in <major>.<minor>.<patch> style. A release is made about every week around tuesday-thursday. Releases increment the minor version number. Occasionally bug-fix releases occur after a weekly release. Those increment only the patch number. No releases have yet made a major version increment. Those are expected to be major releases that introduce large number of breaking changes.

0.28.1

Bug fixes
  • Fix for missing alembic.ini in package build.

0.28.0

What's Changed
Bug fixes
Examples

Full Changelog: https://github.com/truera/trulens/compare/trulens-eval-0.27.2...trulens-eval-0.28.0