introduction-to-conda-for-data-scientists
introduction-to-conda-for-data-scientists copied to clipboard
Add examples of how to add channel priorities to environment files.
Need explicit discussion of how to add channel priorities to environment files. Typical way is to add a channels
section to your environment.yml
file.
name: null
channels:
- conda-forge
- defaults
...
Priority is from highest to lowest, so in the above the conda-forge
channel would be given highest priority.
mentioned something about this in PR #52
@samumantha I saw that as well. I have some things to say about this as well but don't have time to include them before the workshop tomorrow so I will leave this issue open to remind myself to add my thoughts later.