soap117 / DeepRule

BSD 3-Clause "New" or "Revised" License
129 stars 45 forks source link

README initial environment instructions no longer valid #17

Closed john-aws closed 2 years ago

john-aws commented 2 years ago

The README suggests creating a conda environment as follows:

conda create  --DeepRule python-course --file DeepRule.txt

but this fails on recent conda installations (e.g. 4.10.3) with:

usage: conda [-h] [-V] command ...
conda: error: unrecognized arguments: --DeepRule

At a guess, this should now be:

conda create  --name DeepRule --file DeepRule.txt
john-aws commented 2 years ago

Also, the subsequent environment activation step should potentially change from:

source activate DeepRule

to the following:

conda activate DeepRule
soap117 commented 2 years ago

Thanks for the update