Hi, I am using linux and the latest version of Anaconda and I have to say that installation using pip is really really tedious. Could you please fix these issues such that newcomers have an easier time using dvc?
-
On installation one gets the following message: ERROR: Cannot uninstall 'PyYAML'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall. So there is an issue with the installed PyYAML version. dvc wants to install its own version, but can't.
Workaround: pip install --ignore-installed dvc.
-
Running dvc leads to the following message: AttributeError: module 'enum' has no attribute 'IntFlag'.
Workaround: pip uninstall enum34.
Thank you.
Hi, I am using linux and the latest version of Anaconda and I have to say that installation using pip is really really tedious. Could you please fix these issues such that newcomers have an easier time using dvc?
On installation one gets the following message:
ERROR: Cannot uninstall 'PyYAML'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.So there is an issue with the installed PyYAML version. dvc wants to install its own version, but can't.Workaround:
pip install --ignore-installed dvc.Running dvc leads to the following message:
AttributeError: module 'enum' has no attribute 'IntFlag'.Workaround:
pip uninstall enum34.Thank you.