From fc17f8b77c854ddf2ccd891058d6597921ebb13a Mon Sep 17 00:00:00 2001 From: Ma5onic <18509613+Ma5onic@users.noreply.github.com> Date: Wed, 24 Apr 2024 10:47:29 -0400 Subject: [PATCH] Fix install instructions for machine learning scientists Fix README.md instructions for machine learning scientists, so that the training requirements/dependencies actually get installed. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fe7e77b9..6c7a5f27 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ If you have anaconda installed, you can run from the root of this repository: conda env update -f environment-cpu.yml # if you don't have GPUs conda env update -f environment-cuda.yml # if you have GPUs conda activate demucs -pip install -e . +pip install -e .[dev] ``` This will create a `demucs` environment with all the dependencies installed.