-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
fix links, outdated info on conda-lock and libmamba #153
Conversation
@@ -44,35 +44,6 @@ bash Miniforge-$(uname)-$(uname -m).sh | |||
and use all the default options, | |||
except for the license agreement where you must actively change it to `yes`. | |||
|
|||
## Add mamba solver |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is unnecessary now that libmamba is the default solver.
1. In rare cases you may want to install a frozen version of the environment. Like, you need the exact same version that is running on our CIs. You can accomplish that by [downloading the lock file your system](https://github.com/ioos/ioos_code_lab/tree/main/.binder) and issuing the command: | ||
1. In rare cases you may want to install a frozen version of the environment. Like, you need the exact same version that is running on our CIs. You can accomplish that by [downloading the lock file](https://github.com/ioos/ioos_code_lab/raw/main/.binder/conda-lock.yml) and issuing the command: | ||
|
||
```shell | ||
conda create --name IOOS --file .binder/conda-linux-64.lock | ||
conda create --name IOOS --file .binder/conda-lock.yml | ||
``` | ||
|
||
Be sure to change `linux-64` in the lock file name according to your system (`win-64` or `osx-64`). | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are using the platform agnostic lockfile. We no longer need platform specific instructions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like how we're simplifying the install process here.
In this PR:
Closes #149