Installation
Binary installation of iDVC can be achieved with conda. Currently we only tested the app on Windows.
Installing the App
Install miniconda: https://docs.conda.io/en/latest/miniconda.html
Open an anaconda prompt (miniconda).
Create a new environment and install the software by typing
conda create --name idvc_environment -c conda-forge -c ccpi idvc=24.1.0
(or replace24.1.0
with the latest version number).Activate the environment by typing
activate idvc_environment
.Run the app by typing
idvc
.
Please note that whenever you would like to open the app you need to carry out steps 2, 4 and 5 above. Alternatively, use miniforge (https://github.com/conda-forge/miniforge) instead of miniconda.
Updating the App
If you have previously installed the app, to get an updated version:
Open anaconda prompt (miniconda).
Type
activate idvc_environment
(note that when you created your environment, if you called it something else you need to replaceidvc
with your environment name.)Type
conda install idvc=24.2.0 -c ccpi -c conda-forge
(or replace24.2.0
with the latest version number)Type
idvc
to open up the app, as normal.
Installing the DVC Executable Only
If you have followed the instructions to install the app above, you will have installed both the app and the dvc executable which can be called from the command line by typing ‘dvc’ Alternatively, if you would only like to install the dvc executable and not the gui, you may follow these instructions:
Install miniconda<https://docs.conda.io/en/latest/miniconda.html>
Open an anaconda prompt (miniconda) and type….
conda create --name dvc-core ccpi-dvc -c ccpi -c conda-forge
activate dvc-core
dvc
Please note that whenever you would like to run the executable in future, you need to carry out steps 2, 4 and 5 above.