From e5788746ac2b4be64fb5407feea37f65db1d7b4b Mon Sep 17 00:00:00 2001 From: Pablo Speciale Date: Wed, 7 Aug 2024 21:42:53 +0200 Subject: [PATCH 1/2] Installation with uv --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 04f3936..20e1b8d 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ https://github.com/donydchen/mvsplat/assets/5866866/c5dc5de1-819e-462f-85a2-815e239d8ff2 -## Installation +## Installation with conda To get started, clone this project, create a conda virtual environment using Python 3.10+, and install the requirements: @@ -36,6 +36,19 @@ pip install torch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2 --index-url https pip install -r requirements.txt ``` +## Installation with uv + +Alternative, you can use `uv` (https://github.com/astral-sh/uv) tool: +```bash +git clone https://github.com/donydchen/mvsplat.git +cd mvsplat +pip install uv +uv venv +source .venv/bin/activate +uv pip install torch torchvision torchaudio +uv pip install --no-build-isolation -r requirements.txt +``` + ## Acquiring Datasets ### RealEstate10K and ACID From 413c7b78d2456dc6eac95aca271efe9c9b7d4a85 Mon Sep 17 00:00:00 2001 From: Pablo Speciale Date: Wed, 7 Aug 2024 21:46:50 +0200 Subject: [PATCH 2/2] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 20e1b8d..29b91e1 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ pip install -r requirements.txt ## Installation with uv -Alternative, you can use `uv` (https://github.com/astral-sh/uv) tool: +Alternatively, one could use `uv` (https://github.com/astral-sh/uv) tool: ```bash git clone https://github.com/donydchen/mvsplat.git cd mvsplat