Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 797 Bytes

INSTALL.md

File metadata and controls

34 lines (25 loc) · 797 Bytes
  1. Install PosePipeline into your path
git clone https://github.com/peabody124/PosePipeline.git
cd PosePipeline
pip install -e .
  1. Launch DataJoint database. One can also set up a local MySQL database, following the instruction at DataJoint.
cd datajoint_docker
docker-compose up -d
  1. When running code, make sure to configure repository for where video stores will be kept. This can also be saved to the DataJoint configuration.
dj.config['stores'] = {
    'localattach': {
        'protocol': 'file',
        'location': '/mnt/data0/clinical_data/datajoint_external'
    }
}
  1. To use OpenMMLab packages, the following additional step is required. Note: this assume uv is being used as the package manager.
uv run bash scripts/mmlab_install.sh