version: development version not showing the latest git commit hash
See original GitHub issueI tried installing DVC with the help of guide in command-reference. Also from user-guide
But the output is not the same as described the
version
command reference.
Development version:
pip install git+git://github.com/iterative/dvc
will install DVC using the master branch of DVC’s repository. Another way of setting up the development version is to clone the repository and runpip install .
. The master branch is continuously being updated with changes which might not be ready to publish yet. Therefore installing using the above command might have issues regarding its usage. So to trace any error reported with this setup, we need to know exactly which version is being used. For this, we rely on git commit hash which is displayed in output as0.40.2+292cab.mod
. The part before + is the BASE_VERSION and the latter part is the git commit hash which is one of the commits in the master branch (also, optional suffix .mod means that code is modified).
But, in my Windows machine, it is working fine.
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (3 by maintainers)
@ryokugyu closing this since we failed to reproduce. Please, try to provide a clear instruction on how we can do this if it’s still an existing issue.
@ryokugyu , I also couldn’t reproduce it, here are my steps:
As @shcheklein mentioned, you may have two conflicting versions of DVC (for example, one installed with
apt-get
orpip install dvc
and the other one withgit clone ... && pip install .
)Maybe you can
pip uninstall dvc
and check ifwhich dvc
outputs anything, if so, you need to also remove the other version.Hope it helps 😃