Skip to content

Running a locally installed version

Julien Lamy edited this page Nov 15, 2016 · 1 revision

When running a locally installed version of Dicomifier (e.g. a development version) from outside the build directory, two environment variables must be adjusted: PYTHONPATH and PATH. Assuming that the DICOMIFIER_SOURCE environment variable contains the path to the source code of Dicomifier and that the DICOMIFIER_BUILD environment variable contains the path the build directory of Dicomifier, the following snippet configure your environment to use a local version of Dicomifier.

export PYTHONPATH=${DICOMIFIER_SOURCE}/src/python:${DICOMIFIER_BUILD}/src/python/dicomifier:${DICOMIFIER_BUILD}/src/python/dicomifier/bruker:${DICOMIFIER_BUILD}/src/python/dicomifier/nifti:${PYTHONPATH}
export PATH=${DICOMIFIER_SOURCE}/src/cli:${DICOMIFIER_BUILD}/src/gui:${PATH}
Clone this wiki locally