diff --git a/README.md b/README.md index a73d3bfe..0c4528b4 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ lakeFS-spec is published on PyPI, you can simply install it using your favorite ```shell $ pip install lakefs-spec - # or -$ poetry add lakefs-spec + # or, for example with uv: +$ uv add lakefs-spec ``` ## Usage diff --git a/docs/quickstart.md b/docs/quickstart.md index 52184daa..78641e05 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -25,7 +25,7 @@ in a lakeFS repository using lakeFS-spec. We generally recommend installing the library in a virtual environment to ensure proper isolation, especially when following this quickstart guide. - If you are using Poetry, virtual environments can automatically be created by the tool. + If you are using uv, virtual environments can automatically be created by the tool. If you prefer the `venv` functionality built into Python, see the [official docs](https://docs.python.org/3/library/venv.html) (tl;dr: `python -m venv venv; source venv/bin/activate`). @@ -37,10 +37,10 @@ To install the package directly from PyPI, run: pip install lakefs-spec ``` -=== "poetry" +=== "uv" ``` - poetry add lakefs-spec + uv add lakefs-spec ``` Or, if you want to try the latest pre-release version directly from GitHub: @@ -51,10 +51,10 @@ Or, if you want to try the latest pre-release version directly from GitHub: pip install git+https://github.com/aai-institute/lakefs-spec.git ``` -=== "poetry" +=== "uv" ``` - poetry add git+https://github.com/aai-institute/lakefs-spec.git + uv add git+https://github.com/aai-institute/lakefs-spec.git ``` ## First Steps