Initialize DVC and Track a Dataset
Run dvc add and commit the pointer, not the data.
Install DVC First
DVC is a Python package, so a single pip command gets you started. After this you have the dvc command available in your terminal.
pip install dvcStart Inside a Git Repo
DVC works alongside Git, not instead of it. So you run it inside an existing Git repository where your code already lives.
git init
dvc initAll lessons in this course
- Why Git Alone Cannot Version Data
- Initialize DVC and Track a Dataset
- Push Data to Remote Storage
- Roll Back to an Earlier Dataset