Installation ============ First install and load `reticulate `_ (an R package for accessing Python functionality from within R): .. code-block:: r install.packages("reticulate") library("reticulate") Check if you already have `conda `_ (a scientific Python distribution) installed on your system: .. code-block:: r conda_exe() If this shows you the path to a conda executable, you can skip the next step. If instead it shows you an error, you need to install conda: .. code-block:: r install_miniconda() Then install the pipeline from the `Python Package Index (PyPI) `_: .. code-block:: r py_install("hu-neuro-pipeline", pip = TRUE) Alternatively, you can install the latest development version from `GitHub `_: .. code-block:: r py_install("git+https://github.com/alexenge/hu-neuro-pipeline.git", pip = TRUE) What next? ---------- To jump right into how to use the pipeline, see :doc:`Quickstart `. To learn about the different steps that the pipeline is carrying out, see :doc:`Processing details `. If you have questions or need help with using the pipeline, please `create an issue on GitHub `_.