Replies: 1 comment 1 reply
-
Yes, all channels have priority 0, unless specified differently. If you specify Running |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I failed to understand the logic of channel priority here: https://pixi.sh/latest/advanced/channel_priority/
If a feature has channels
['a','b', {channel='c', priority=1}, {channel='d', priority=-1}]
and default channels is['conda-forge', 'cuda']
we will prepend then channels of this feature to the default channels then sort then?
like this: first merge them to
['a','b', {channel='c', priority=1}, {channel='d', priority=-1}, 'conda-forge', 'cuda']
, then sort it to['c', 'a','b', 'conda-forge', 'cuda', 'd']
?Beta Was this translation helpful? Give feedback.
All reactions