From e1a5aaf61c0f6f258e5dfa7d15480dc69e5dc1b3 Mon Sep 17 00:00:00 2001 From: Nicolas Audebert Date: Tue, 18 Jun 2019 15:00:20 +0200 Subject: [PATCH] Fixes conda installation using environment.yml file Creating a new environment in `conda` from a file requires the YAML format. This commit renames the file and updates the README. This fixes #106. --- README.md | 2 +- pixel_link_env.txt => pixel_link_env.yml | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename pixel_link_env.txt => pixel_link_env.yml (100%) diff --git a/README.md b/README.md index a1d7808..004a655 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Anaconda is recommended to for an easier installation: 1. Install [Anaconda](https://anaconda.org/) 2. Create and activate the required virtual environment by: ``` -conda env create --file pixel_link_env.txt +conda env create --file pixel_link_env.yml source activate pixel_link ``` diff --git a/pixel_link_env.txt b/pixel_link_env.yml similarity index 100% rename from pixel_link_env.txt rename to pixel_link_env.yml