From b31adc66d9c640d9d3fe26fcebb4e6697c8c0510 Mon Sep 17 00:00:00 2001 From: Duc Trung LE Date: Mon, 25 Oct 2021 21:54:54 +0200 Subject: [PATCH] Backport PR #1012: Fix installation instructions --- docs/source/contribute.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/source/contribute.rst b/docs/source/contribute.rst index 7e57c7090..28b560e38 100755 --- a/docs/source/contribute.rst +++ b/docs/source/contribute.rst @@ -31,16 +31,15 @@ First, you need to fork the project. Then setup your environment: .. code-block:: bash # create a new conda environment - conda create -n voila -c conda-forge notebook nodejs + conda create -n voila -c conda-forge notebook jupyterlab nodejs yarn pip conda activate voila # download voila from your GitHub fork git clone https://github.com//voila.git # install JS dependencies and build js assets - cd voila/js - npm install - cd .. + cd voila + yarn install # install VoilĂ  in editable mode python -m pip install -e .