From f08f903c7222d404b053331788853b0507076949 Mon Sep 17 00:00:00 2001 From: pciturri Date: Thu, 16 Nov 2023 00:53:51 +0100 Subject: [PATCH] docs: developer installation - added pip command to install developer dependencies --- docs/getting_started/installing.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/getting_started/installing.rst b/docs/getting_started/installing.rst index 868ee7cc..c37b8a41 100644 --- a/docs/getting_started/installing.rst +++ b/docs/getting_started/installing.rst @@ -98,9 +98,10 @@ We recommend using ``conda`` to install the development environment. :: cd pycsep conda env create -f requirements.yml conda activate csep-dev - pip install -e . + pip install -e .[all] # Allow sync with default repository git remote add upstream https://github.com/SCECCode/pycsep.git +This ensures to have a clean installation of ``pyCSEP`` and the required developer dependencies (e.g., ``pytest``, ``sphinx``). Now you can pull from upstream using ``git pull upstream master`` to keep your copy of the repository in sync with the latest commits. \ No newline at end of file