Data: Tabular Time Series Specialty: Endocrinology Laboratory: Blood Tests EHR: Demographics Diagnoses Medications Omics: Genomics Multi-omics Transcriptomics Wearable: Activity Clinical Purpose: Treatment Response Assessment Task: Biomarker Discovery
[c23b31]: / docs / source / install.rst

Download this file

48 lines (30 with data), 1.4 kB

Install

MOVE is distributed as move-dl, a Python package.

It requires Python 3.9 (or later) and third-party libraries, such as PyTorch and Hydra. These dependencies will be installed automatically when you install with pip.

Install the stable version

We recommend installing move-dl in a fresh virtual environment. If you wish to learn how to create and manage virtual environments with Conda, please follow these instructions.

The latest stable version of move-dl can be installed with pip.

>>> pip install move-dl

Install the development version

If you wish to install the development of move-dl, create a new virtual environment, and do:

>>> pip install git+https://github.com/RasmussenLab/MOVE@developer

Alternatively, you can clone move-dl from GitHub and install by running the following command from the top-level source directory:

>>> pip install -e .

The -e flag installs the project in "editable" mode, so you can follow the development branch and update your installation by pulling from GitHub.