Instructions for installing civet locally
civet runs on MacOS and Linux. The conda environment recipe may not build on Windows (and is not supported) but civet can be run using the Windows subsystem for Linux.
git clone https://github.com/COG-UK/civet.git
and cd civet
conda env create -f environment.yml
conda activate civet
python setup.py install
Note: we recommend using civet in the conda environment specified in the
environment.yml
file as per the instructions above. If you can’t use conda for some reason, dependency details can be found in theenvironment.yml
file.
Type (in the civet environment):
civet
and you should see the help menu of civet printed
Note: Even if you have previously installed
civet
, as it is being worked on intensively, we recommend you check for updates before running.
To update:
conda activate civet
git pull
python setup.py install
conda env update -f environment.yml
pip
, you will need to update civet in the same way (pip install .
)pip uninstall civet
and then re-install with python setup.py install