You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using pixi project channel add adds the given channel name to the end of the project channels list, making it the lowest priority channel. That is, pixi project channel add pytorch gives me this:
[project]
channels = ["conda-forge", "pytorch"]
In some cases, it's necessary to make the new channel the highest priority. Currently, the only way to control the channel priority is to manually edit the pixi.toml file.
I think it would be fantastic if I could instead run:
pixi project channel add pytorch --prepend
And then get this:
[project]
channels = ["pytorch", "conda-forge"]
Thank you for your consideration! 🙏
The text was updated successfully, but these errors were encountered:
Problem description
Using
pixi project channel add
adds the given channel name to the end of the projectchannels
list, making it the lowest priority channel. That is,pixi project channel add pytorch
gives me this:In some cases, it's necessary to make the new channel the highest priority. Currently, the only way to control the channel priority is to manually edit the
pixi.toml
file.I think it would be fantastic if I could instead run:
And then get this:
Thank you for your consideration! 🙏
The text was updated successfully, but these errors were encountered: