- fork this repo
- clone the fork:
git clone [email protected]:USERNAME/sequence-learning.git
- add the upstream to local clone:
git remote add upstream [email protected]:unibe-cns/sequence-learning.git
- create a python environment,
- either with venv:
python -m venv --system-site-packages <name_of_env>
and activate it:source ./<name_of_env>/bin/activate
- or with conda:
conda create -n <name_of_env>
(maybe add the python version:python=3.9
) and activate it:conda activate <name_of_env>
- install the dependies:
python -m pip install -r requirements.txt
- install this very pip-package:
python -m pip install -e .
- install the pre-commit hooks:
pre-commit install
- happy coding!