Installing Evidently AI
Last updated September 6, 2024
Welcome to Evidently AI, the go-to solution for data scientists and developers seeking to streamline model monitoring and analysis. In this guide, we'll walk you through the steps to install Evidently AI on your system, enabling you to efficiently track and evaluate the performance of machine learning models.
Step-by-Step Installation Guide
- Check System Requirements
- Ensure your system has Python 3.6 or later installed.
- Verify pip is available for package management.
- Install Evidently AI
- Open your terminal or command prompt.
- Run the following command to install Evidently AI:
Copy code
pip install evidently
- Verify Installation
- After installation, verify it by importing Evidently in your Python environment:
python
Copy code
import evidently
- Run Your First Report
- Set up a simple report using Evidently by integrating it into your existing project. Example:
python
Copy code
from evidently.report import Report report = Report(...)
Was this article helpful?