Skip to content

repository

Contains method related to the PROCESS repository/installation

get_process_root()

Returns the root directory of PROCESS.

E.g. '/home/user/process'

Source code in process/core/repository.py
10
11
12
13
14
15
16
def get_process_root() -> Path:
    """Returns the root directory of PROCESS.

    E.g. '/home/user/process'
    """

    return Path(_PROCESS_ROOT)