Last active
May 30, 2025 22:45
-
-
Save jesserobertson/eb3516de0c70844024086ac84491da2c to your computer and use it in GitHub Desktop.
Installing pixi for dependency management in OpenAI Codex container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget -qO- https://pixi.sh/install.sh | sh | |
# This will fail unless $PIXI_HOME is set to something on the default path (e.g. /usr/local) | |
# Set this using the Codex Environment Vars UI (see comment below) | |
pixi install --all --no-progress |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Edit - add the --no-progress flag to avoid stuffing the terminal logs with rubbish (slows down the interface massively)