We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just starting my first attempt to use COAsT and I found an error on the getting started page:
https://british-oceanographic-data-centre.github.io/COAsT/docs/getting-started/
The second wget command is:
wget -c https://github.com/British-Oceanographic-Data-Centre/COAsT/archive/refs/heads/master.zip && unzip COAsT-master.zip
It downloads master.zip, but tried to unzip COAsT-master.zip.
master.zip
COAsT-master.zip
This should be:
wget -c https://github.com/British-Oceanographic-Data-Centre/COAsT/archive/refs/heads/master.zip && unzip master.zip
I also noticed that the conda environment creation command is
conda env update --prune --file environment.yml
I'm no expert here, but I would have thought a firtst time user should create the environment, not update it:
conda env create --file environment.yml
Though it's quite possible it doesn't matter.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Just starting my first attempt to use COAsT and I found an error on the getting started page:
https://british-oceanographic-data-centre.github.io/COAsT/docs/getting-started/
The second wget command is:
It downloads
master.zip
, but tried to unzipCOAsT-master.zip
.This should be:
I also noticed that the conda environment creation command is
I'm no expert here, but I would have thought a firtst time user should create the environment, not update it:
Though it's quite possible it doesn't matter.
The text was updated successfully, but these errors were encountered: