Possible to extend Pixi global exposes without overwriting defaults? #4766
Answered
by
Hofer-Julian
matthewfeickert
asked this question in
Q&A
-
|
In $ pixi --version
pixi 0.56.0if you give Example: By default $ pixi global install root
└── root: 6.36.04 (installed)
└─ exposes: rootbut if you add an $ pixi global uninstall root
Removed environment root. $ pixi global install --expose pyroot=python root
└── root: 6.36.04 (installed)
└─ exposes: pyroot -> pythonunless you redefine that $ pixi global uninstall root
Removed environment root. $ pixi global install --expose root=root --expose pyroot=python root
└── root: 6.36.04 (installed)
└─ exposes: root, pyroot -> pythonIs it possible to extend the existing exposed CLIs without overwriting them without having to redefine them? |
Beta Was this translation helpful? Give feedback.
Answered by
Hofer-Julian
Oct 16, 2025
Replies: 1 comment 3 replies
-
|
You can run |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
matthewfeickert
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can run
pixi global expose add pyroot=pythonafter installing it