Is it possible to update the pixi global manifest from the command line? #2378
Unanswered
matthewfeickert
asked this question in
Q&A
Replies: 1 comment
-
With regards to |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As a contrived example, let's say that you have a globally installed tool that was originally installed with a constraint. You now want to remove that constraint and update everything with
pixi global update
. Is it possible to edit that tool's environment's dependencies through thepixi global
command line?At the time being (
pixi
v0.34.0
) I can't find a way to do this beyond something like the following:There is of course the obvious
$ pixi global uninstall uv && pixi global install uv
which is fine for simple environments, and I guess for more complex environment you can do the equivalent of
but I was curious if there was something more elegant. Maybe this is what
pixi global edit
is designed for though.The
v0.34.0
docs mention mention the ability to doand
but those commands don't seem to exist yet:
Beta Was this translation helpful? Give feedback.
All reactions