From ef8f1931d72e0bc66b6055422f2d12f77ad9c191 Mon Sep 17 00:00:00 2001 From: "K.B.S Srikar" Date: Fri, 21 Nov 2025 13:38:31 +0530 Subject: [PATCH 1/2] Fix README typos and clarify install notes --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ad97becda6..b463711968 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ To install from PyPI: ```sh pip install evidently ``` -To install Evidently using conda installer, run: +To install Evidently using the conda installer, run: ```sh conda install -c conda-forge evidently @@ -177,14 +177,14 @@ To get the output as JSON or Python dictionary: my_eval.json() # my_eval.dict() ``` -You can choose other Presets, create Reports from indiviudal Metrics and configure pass/fail conditions. +You can choose other Presets, create Reports from individual Metrics and configure pass/fail conditions. ## Monitoring dashboard This launches a demo project in the locally hosted Evidently UI. Sign up for [Evidently Cloud](https://docs.evidentlyai.com/docs/setup/cloud) to instantly get a managed version with additional features. -if you have [uv](https://docs.astral.sh/uv/) you can run Evidently UI with a single command. +If you have [uv](https://docs.astral.sh/uv/) installed, you can run Evidently UI with a single command: ```shell uv run --with evidently evidently ui --demo-projects all ``` @@ -225,7 +225,7 @@ Here are examples of things you can check: We welcome contributions! Read the [Guide](CONTRIBUTING.md) to learn more. # :books: Documentation -For more examples, refer to a complete Documentation. +For more examples, refer to the complete documentation. # :white_check_mark: Discord Community If you want to chat and connect, join our [Discord community](https://discord.gg/xZjKRaNp8b)! From 2e64ad74b520662bf1ce9ca94dc039f678470a4f Mon Sep 17 00:00:00 2001 From: "K.B.S Srikar" Date: Fri, 21 Nov 2025 13:42:35 +0530 Subject: [PATCH 2/2] Add Windows venv activation instructions --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index b463711968..d54ccf489a 100644 --- a/README.md +++ b/README.md @@ -196,6 +196,13 @@ virtualenv venv source venv/bin/activate ``` +On Windows, activate the environment with PowerShell or Command Prompt: + +``` +.\venv\Scripts\Activate.ps1 # PowerShell +venv\Scripts\activate.bat # Command Prompt +``` + After installing Evidently (`pip install evidently`), run the Evidently UI with the demo projects: ``` evidently ui --demo-projects all