Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
1,686
Downloads of v 2.0.18:
17
Last Update:
16 Apr 2021
Package Maintainer(s):
Software Author(s):
- Dmitry Petrov
Tags:
dvc git ml ds cross-platform cli foss- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

DVC
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,686
Downloads of v 2.0.18:
17
Maintainer(s):
Software Author(s):
- Dmitry Petrov
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
All Checks are Passing
2 Passing Test
To install DVC, run the following command from the command line or from PowerShell:
To upgrade DVC, run the following command from the command line or from PowerShell:
To uninstall DVC, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download dvc --internalize --source=https://community.chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade dvc -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade dvc -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure dvc installed
win_chocolatey:
name: dvc
state: present
version: 2.0.18
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'dvc' do
action :install
version '2.0.18'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: dvc,
Version: 2.0.18,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller dvc
{
Name = 'dvc'
Ensure = 'Present'
Version = '2.0.18'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'dvc':
provider => 'chocolatey',
ensure => '2.0.18',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install dvc version="2.0.18" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 16 Apr 2021.
Data Version Control or DVC is an open-source tool for data science and machine
learning projects. Key features:
Simple command line Git-like experience. Does not require installing and maintaining
any databases. Does not depend on any proprietary online services.Management and versioning of datasets and machine learning models. Data is saved in
S3, Google cloud, Azure, Alibaba cloud, SSH server, HDFS, or even local HDD RAID.Makes projects reproducible and shareable; helping to answer questions about how
a model was built.Helps manage experiments with Git tags/branches and metrics tracking.
DVC aims to replace spreadsheet and document sharing tools (such as Excel or Google Docs)
which are being used frequently as both knowledge repositories and team ledgers.
DVC also replaces both ad-hoc scripts to track, move, and deploy different model versions;
as well as ad-hoc data file suffixes and prefixes.
Update-SessionEnvironment
$version = '2.0.18'
$url = "https://github.com/iterative/dvc/archive/$version.zip"
$checksum = '06f078da54506e686effa1d95a9000dbbb39546e8eae41ea34a82e98bf253b5c'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$zipFile = "$toolsDir\dvc-$version.zip"
$projDir = "$toolsDir\dvc-$version"
Get-ChocolateyWebFile -PackageName 'dvc' -Url "$url" -FileFullPath "$zipFile" -ChecksumType sha256 -Checksum "$checksum"
Get-ChocolateyUnzip -FileFullPath "$zipFile" -Destination "$toolsDir"
Set-Location -Path "$projDir"
New-Item -Path "dvc\utils" -Name "build.py" -ItemType "file" -Value "PKG = 'choco'"
python -m pip install --upgrade pip
# NOTE: not installing pyarrow, as it doesn't have wheels for Windows Server 2012,
# see https://gist.github.com/choco-bot/d72732943836c947633625b1428a3f2c#file-install-txt-L1292
python -m pip install '.[gs,s3,azure,oss,ssh,gdrive]'
python -m pip uninstall -y dvc
Log in or click on link to see number of positives.
- dvc.2.0.18.nupkg (be5a88d22b9f) - ## / 61
- dvc-2.0.18.zip (06f078da5450) - ## / 59
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
DVC 2.0.18 | 17 | Friday, April 16, 2021 | Approved |
DVC 2.0.17 | 41 | Saturday, April 3, 2021 | Approved |
DVC 2.0.16 | 4 | Friday, April 2, 2021 | Approved |
DVC 2.0.15 | 8 | Wednesday, March 31, 2021 | Approved |
DVC 2.0.13 | 4 | Tuesday, March 30, 2021 | Approved |
DVC 2.0.12 | 6 | Saturday, March 27, 2021 | Approved |
DVC 2.0.7 | 40 | Tuesday, March 23, 2021 | Approved |
DVC 2.0.6 | 35 | Wednesday, March 17, 2021 | Approved |
DVC 2.0.5 | 77 | Thursday, March 11, 2021 | Approved |
DVC 2.0.4 | 10 | Wednesday, March 10, 2021 | Approved |
DVC 2.0.3 | 138 | Saturday, March 6, 2021 | Approved |
DVC 2.0.2 | 16 | Friday, March 5, 2021 | Approved |
DVC 2.0.1 | 19 | Wednesday, March 3, 2021 | Approved |
DVC 1.11.16 | 38 | Tuesday, February 16, 2021 | Approved |
DVC 1.11.15 | 30 | Wednesday, February 3, 2021 | Approved |
DVC 1.11.14 | 17 | Tuesday, February 2, 2021 | Approved |
DVC 1.11.13 | 25 | Wednesday, January 27, 2021 | Approved |
DVC 1.11.12 | 19 | Monday, January 25, 2021 | Approved |
DVC 1.11.11 | 19 | Saturday, January 23, 2021 | Approved |
DVC 1.11.10 | 38 | Wednesday, January 6, 2021 | Approved |
DVC 1.11.9 | 17 | Thursday, December 24, 2020 | Approved |
DVC 1.11.8 | 55 | Thursday, December 17, 2020 | Approved |
DVC 1.11.7 | 14 | Wednesday, December 16, 2020 | Approved |
DVC 1.11.6 | 16 | Tuesday, December 15, 2020 | Approved |
DVC 1.11.4 | 16 | Sunday, December 13, 2020 | Approved |
DVC 1.11.3 | 11 | Wednesday, December 9, 2020 | Approved |
DVC 1.11.2 | 17 | Thursday, December 3, 2020 | Approved |
DVC 1.10.2 | 20 | Wednesday, November 25, 2020 | Approved |
DVC 1.10.1 | 21 | Friday, November 20, 2020 | Approved |
DVC 1.10.0 | 23 | Thursday, November 19, 2020 | Approved |
DVC 1.9.1 | 47 | Thursday, October 29, 2020 | Approved |
DVC 1.9.0 | 30 | Thursday, October 22, 2020 | Approved |
DVC 1.8.1 | 71 | Thursday, October 8, 2020 | Approved |
DVC 1.7.9 | 33 | Friday, September 25, 2020 | Approved |
DVC 1.7.2 | 44 | Wednesday, September 16, 2020 | Approved |
DVC 1.7.0 | 23 | Monday, September 14, 2020 | Approved |
DVC 1.3.0 | 39 | Saturday, August 1, 2020 | Approved |
DVC 1.1.7 | 50 | Thursday, July 9, 2020 | Approved |
DVC 1.0.1 | 63 | Wednesday, June 24, 2020 | Approved |
DVC 0.94.0 | 89 | Sunday, May 17, 2020 | Approved |
DVC 0.93.0 | 54 | Saturday, May 16, 2020 | Approved |
DVC 0.80.0 | 99 | Saturday, January 11, 2020 | Approved |
DVC 0.70.0 | 108 | Tuesday, January 7, 2020 | Approved |
-
- Python (≥ 3.6 && ≤ 3.8)
Ground Rules:
- This discussion is only about DVC and the DVC package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or DVC, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.