docs: add installation example for uv

This commit is contained in:
rzmk 2024-06-20 16:37:41 -04:00
parent 1b3f8bb0c9
commit f15affb856
No known key found for this signature in database
2 changed files with 4 additions and 0 deletions

View file

@ -70,6 +70,8 @@ console.log(output);
pip install czv pip install czv
``` ```
Or use [`uv pip`](https://github.com/astral-sh/uv) instead of `pip`.
```python ```python
import czv import czv

View file

@ -17,6 +17,8 @@ To install `czv`, run:
pip install czv 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: Let's say we want to print the total number of rows in a 4x3 CSV file `fruits.csv` including the header row:
```python ```python