Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.46 KB

README.md

File metadata and controls

30 lines (24 loc) · 1.46 KB

Python Version PyPI Version License CI Code style: Ruff codecov pre-commit

ethology

Installation

First clone the repository at the desired location:

git clone https://github.com/neuroinformatics-unit/ethology.git

Then create a conda environment and install the package from source

conda create -n ethology-env python=3.12 -y
conda activate ethology-env
cd ethology
pip install .

To install the package in editable mode with developer dependencies, replace the last command with:

pip install -e .[dev]  # in mac: pip install -e ".[dev]"