DVC - Data Version Control

November 20, 2024 ยท View on GitHub

https://dvc.org/

Git for data science projects.

Install

Mac

brew install dvc

Debian / Ubuntu

Download the apt sources list:

sudo wget \
     https://dvc.org/deb/dvc.list \
     -O /etc/apt/sources.list.d/dvc.list

Download the GPG key:

curl -sSf https://dvc.org/deb/iterative.asc |
gpg --dearmor > dvc.gpg
sudo install -o root -g root -m 644 dvc.gpg /etc/apt/trusted.gpg.d/ &&
rm -f dvc.gpg
sudo apt update
sudo apt install dvc

Pull Path

dvc pull "$DVC_PATH"