From b54c3af36e364e68aa9c43478a730e0f604964dd Mon Sep 17 00:00:00 2001 From: Paul Goyes Date: Thu, 5 Oct 2023 19:44:05 -0500 Subject: [PATCH] Update README.md update the conda environment installation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2be51a2..97bddc9 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ The architecture we propose is the MultiResolution UNet: The code mainly relies on top of pytorch. You can recreate our conda environment named `dpi` (acronym for "deep prior interpolation") through ``` -conda create env -f environment.yml +conda env create -f environment.yml ``` Then, activate it with `source activate dpi` before running any example.
**NOTE**: if you have initialized conda through `conda init`, use `conda activate dpi` instead.