Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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

Alternatively, one could 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
Expand Down