본문 바로가기
macOS

[mac M1] DVC (Data Version Control) 설치

by pilgyeong 2023. 1. 6.

[공식홈페이지] https://dvc.org/

 

Data Version Control · DVC

Open-source version control system for Data Science and Machine Learning projects. Git-like experience to organize your data, models, and experiments.

dvc.org

 

# brew를 통한 설치
brew install dvc

# pip을 통한 설치
pip install dvc
pip install 'dvc[all]'==2.8.1

# conda를 통한 설치
conda install -c conda-forge mamba # installs much faster than conda
mamba install -c conda-forge dvc

참고로, "pip install 'dvc[all]'==2.8.1"는 dvc의 remote storage로 s3, gs, azure, oss, ssh 모두 사용할 수 있도록 관련 패키지를 함께 설치하는 옵션 (근데 저는 안 되길래... brew를 통해 설치)

 

 

정상적으로 설치됐는지 확인

dvc --version

dvc --help