From f15affb8565d4cec4269f63d924f2d426791b823 Mon Sep 17 00:00:00 2001 From: rzmk <30333942+rzmk@users.noreply.github.com> Date: Thu, 20 Jun 2024 16:37:41 -0400 Subject: [PATCH] docs: add installation example for uv --- README.md | 2 ++ czv-python/README.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 684ca84..d7ef60a 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,8 @@ console.log(output); pip install czv ``` +Or use [`uv pip`](https://github.com/astral-sh/uv) instead of `pip`. + ```python import czv diff --git a/czv-python/README.md b/czv-python/README.md index 801c4e3..05c4f72 100644 --- a/czv-python/README.md +++ b/czv-python/README.md @@ -17,6 +17,8 @@ To install `czv`, run: pip install czv ``` +Or use [`uv pip`](https://github.com/astral-sh/uv) instead of `pip`. + Let's say we want to print the total number of rows in a 4x3 CSV file `fruits.csv` including the header row: ```python