From 8bfe94d57c3ea5f189cd9ee1b35a630b79eeaa6c Mon Sep 17 00:00:00 2001 From: Jason Bell Date: Tue, 25 Jun 2024 14:46:33 +1000 Subject: [PATCH] Jason Bell - tweaked linux conda enviroment setup instructions - update 2 --- learners/setup.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/learners/setup.md b/learners/setup.md index 335c5da..523932b 100644 --- a/learners/setup.md +++ b/learners/setup.md @@ -269,13 +269,13 @@ Within Linux, there is no Anaconda Prompt application, thus once the anaconda in To create a new environment for this lesson, the command starts with the conda keywords `conda create`. This command can be followed by a name for the new environment and the package(s) to install. To make things easier, inside the unziped intro-image-classification-cnn folder, we have given you an environment.yml file to use instead. (See download link above if you haven't already.) ```code -(base) Mac$ conda env create --file cnn_workshop_environment.yml +$ conda env create --file cnn_workshop_environment.yml ``` If the yml is not in your current directory, you can specify the full path to the file, eg: ```code -(base) Mac$ conda env create --file intro-image-classification-cnn/files/cnn_workshop_environment.yml +$ conda env create --file intro-image-classification-cnn/files/cnn_workshop_environment.yml ``` Be patient because it might take a while (15-20 min) for conda to work out all of the dependencies.