Evidently Cloud

How to set up Evidently Cloud account.

1. Create an Account

If not yet, sign up for a free Evidently Cloud account.

2. Create an Organization

After logging in, create an Organization and name it.

3. Create a Team

Go to the Teams icon in the left menu, create a Team, and name it. (Team page).

Do I always need a Team? Yes. Every Project must be within a Team. Teams act as "folders" to organize your work, and you can create multiple Teams. If you work alone, simply create a Team without external users.

4. Connect from Python

You will need an access token to interact with Evidently Cloud from your Python environment.

Do I always need this? No, only for data uploads or to run evaluations in Python. You can view data, edit dashboards, upload CSVs and run no-code evaluations without the token.

Get a Token

Click the Key icon in the left menu to open the (Token page). Generate and save the token securely.

Install Evidently

To connect to the Evidently Cloud from Python, first install the Evidently Python library.

pip install evidently

Connect

Import the cloud workspace and pass your API token to connect:

from evidently.ui.workspace.cloud import CloudWorkspace

ws = CloudWorkspace(
token="YOUR_TOKEN_HERE",
url="https://app.evidently.cloud")

Now, you are all set to start using Evidently Cloud! Create your first Project and choose your next step.

Last updated