Description
In the Env Installation section of the repository's README file, the file extension in the command:
conda env create -f environment.yml
is incorrect. The actual environment file in the source code is named environment.yaml. This inconsistency may cause confusion for users following the instructions.
Proposed Fix
Update the file extension in the README command to match the actual file name in the source code:
conda env create -f environment.yaml
Location
File: README.md
Section: Env Installation
Impact
Correcting this typo ensures that users can successfully create the Conda environment without encountering errors due to mismatched file names.
Description
In the Env Installation section of the repository's README file, the file extension in the command:
conda env create -f environment.ymlis incorrect. The actual environment file in the source code is named environment.yaml. This inconsistency may cause confusion for users following the instructions.
Proposed Fix
Update the file extension in the README command to match the actual file name in the source code:
conda env create -f environment.yamlLocation
File: README.md
Section: Env Installation
Impact
Correcting this typo ensures that users can successfully create the Conda environment without encountering errors due to mismatched file names.