This repository contains the steps on how to perform the assignments from the Practice: Software Development Course.
The goal of this task is to go through the process of re-creating and modifying a provided python environment with conda.
- Download the environment files individually: I manually downloaded the environment files from the course repository https://github.com/augustinh22/geo-software-dev/tree/main/A2.
- Creating the first environment : Using the command
conda env create -f software_dev_v1.ymlI got a wall of errors, likely due to the platform i'm on.
- Looking into the logs, we can see that the command outputs OS dependent-related erros because it uses some windows specific packages.

- Using the command
conda env create -f software_dev_v2.ymlI didn't get any error and the packages were installed successfully
To check that the env was created, I used : conda activate software_dev_v2and to check that all the packages were installed :conda list