Instructions for installing polecat locally
polecat runs on MacOS and Linux. The conda environment recipe may not build on Windows (and is not supported) but polecat can be run using the Windows subsystem for Linux.
git clone https://github.com/artic-network/polecat.git
and cd polecat
conda env create -f environment.yml
conda activate polecat
python setup.py install
Note: we recommend using polecat 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 polecat environment):
polecat
and you should see the help menu of polecat printed
To update:
conda activate polecat
git pull
python setup.py install
conda env update -f environment.yml
pip
, you will need to update polecat in the same way (pip install .
)pip uninstall polecat
and then re-install with python setup.py install