Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
gosha20777 committed Dec 7, 2023
1 parent fcc4ea4 commit eb53784
Showing 1 changed file with 4 additions and 87 deletions.
91 changes: 4 additions & 87 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

|
**This version of DVC is patched by lacmus foundation.** The patch fixes the following `issue <https://github.com/iterative/dvc/issues/7303>`_.

**Data Version Control** or **DVC** is an **open-source** tool for data science and machine
learning projects. Key features:

Expand Down Expand Up @@ -89,96 +91,11 @@ Please read `Get Started <https://dvc.org/doc/get-started>`_ guide for a full ve
Installation
============

There are four options to install DVC: ``pip``, Homebrew, Conda (Anaconda) or an OS-specific package.
Full instructions are `available here <https://dvc.org/doc/get-started/install>`_.

Snap (Snapcraft/Linux)
----------------------

|Snap|

.. code-block:: bash
snap install dvc --classic
This corresponds to the latest tagged release.
Add ``--beta`` for the latest tagged release candidate,
or ``--edge`` for the latest ``main`` version.

Choco (Chocolatey/Windows)
--------------------------

|Choco|

.. code-block:: bash
choco install dvc
Brew (Homebrew/Mac OS)
----------------------

|Brew|

.. code-block:: bash
brew install dvc
Conda (Anaconda)
----------------

|Conda|

.. code-block:: bash
conda install -c conda-forge mamba # installs much faster than conda
mamba install -c conda-forge dvc
Depending on the remote storage type you plan to use to keep and share your data, you might need to
install optional dependencies: `dvc-s3`, `dvc-azure`, `dvc-gdrive`, `dvc-gs`, `dvc-oss`, `dvc-ssh`.

pip (PyPI)
----------

|PyPI|

.. code-block:: bash
pip install dvc
Depending on the remote storage type you plan to use to keep and share your data, you might need to specify
one of the optional dependencies: ``s3``, ``gs``, ``azure``, ``oss``, ``ssh``. Or ``all`` to include them all.
The command should look like this: ``pip install dvc[s3]`` (in this case AWS S3 dependencies such as ``boto3``
will be installed automatically).

To install the development version, run:

.. code-block:: bash
pip install git+git://github.com/iterative/dvc
Package
-------

|Packages|

Self-contained packages for Linux, Windows, and Mac are available. The latest version of the packages
can be found on the GitHub `releases page <https://github.com/iterative/dvc/releases>`_.

Ubuntu / Debian (deb)
^^^^^^^^^^^^^^^^^^^^^
.. code-block:: bash
sudo wget https://dvc.org/deb/dvc.list -O /etc/apt/sources.list.d/dvc.list
sudo apt-get update
sudo apt-get install dvc
To install version patched by lacmus, run:

Fedora / CentOS (rpm)
^^^^^^^^^^^^^^^^^^^^^
.. code-block:: bash
sudo wget https://dvc.org/rpm/dvc.repo -O /etc/yum.repos.d/dvc.repo
sudo yum update
sudo yum install dvc
pip install git+git://github.com/lacmus-foundation/dvc
Comparison to related technologies
==================================
Expand Down

0 comments on commit eb53784

Please sign in to comment.