Skip to content
This repository was archived by the owner on Feb 15, 2026. It is now read-only.

Commit 114de84

Browse files
KemingHegithub-actions[bot]
authored andcommitted
docs(src/assets/): update pixi official documentation
1 parent 51aeecb commit 114de84

19 files changed

Lines changed: 36 additions & 87 deletions

File tree

src/assets/pixi/_metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"source_repo": "prefix-dev/pixi",
33
"docs_path": "docs",
4-
"updated_at": "2025-09-02T22:05:15Z",
5-
"commit_sha": "bb2e54da3483cf81aec983b30038a39df0cb2609"
4+
"updated_at": "2025-09-09T22:05:41Z",
5+
"commit_sha": "00bc842062c0b56933528d68d59c93f1a252987a"
66
}

src/assets/pixi/deployment/container.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ There are different tags for different base images available:
1111
- `latest` - based on `ubuntu:jammy`
1212
- `focal` - based on `ubuntu:focal`
1313
- `bullseye` - based on `debian:bullseye`
14-
- `jammy-cuda-12.2.2` - based on `nvidia/cuda:12.2.2-jammy`
14+
- `noble-cuda-12.9.1` - based on `nvidia/cuda:12.9.1-base-ubuntu24.04`
15+
- `noble-cuda-13.0.0` - based on `nvidia/cuda:13.0.0-base-ubuntu24.04`
1516
- ... and more
1617

1718
!!!tip "All tags"

src/assets/pixi/integration/ci/github_actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ We created [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi) to
1010
```yaml
1111
- uses: prefix-dev/setup-pixi@v0.9.0
1212
with:
13-
pixi-version: v0.54.0
13+
pixi-version: v0.54.2
1414
cache: true
1515
auth-host: prefix.dev
1616
auth-token: ${{ secrets.PREFIX_DEV_TOKEN }}

src/assets/pixi/integration/editor/vscode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Then, create the following two files in the `.devcontainer` directory:
2828
```dockerfile title=".devcontainer/Dockerfile"
2929
FROM mcr.microsoft.com/devcontainers/base:jammy
3030

31-
ARG PIXI_VERSION=v0.54.0
31+
ARG PIXI_VERSION=v0.54.2
3232

3333
RUN curl -L -o /usr/local/bin/pixi -fsSL --compressed "https://github.com/prefix-dev/pixi/releases/download/${PIXI_VERSION}/pixi-$(uname -m)-unknown-linux-musl" \
3434
&& chmod +x /usr/local/bin/pixi \

src/assets/pixi/integration/extensions/introduction.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Pixi searches all directories in your `PATH` environment variable for executable
2323
### 2. `pixi global` Directories
2424
Pixi also searches in directories managed by `pixi global`, which allows for organized extension management without cluttering your system PATH.
2525

26-
When you run `pixi --help`, all discovered extensions are automatically listed in the "Available Extensions" section, making them easily discoverable alongside built-in commands.
26+
When you run `pixi --list`, all discovered extensions are automatically listed alongside all built-in commands, making the commands easily discoverable.
2727

2828
## Installing Extensions
2929

@@ -43,7 +43,7 @@ This approach has several advantages:
4343
- **Isolated environments**: Each extension gets its own environment, preventing dependency conflicts
4444
- **Automatic discovery**: Extensions are automatically found by Pixi without modifying PATH
4545
- **Easy management**: Use `pixi global list` and `pixi global remove` to manage extensions
46-
- **Consistent experience**: Extensions appear in `pixi --help` just like built-in commands
46+
- **Consistent experience**: Extensions appear in `pixi --list` with all the built-in commands, just like how `Cargo` handles it
4747

4848
### Manual Installation
4949

@@ -105,7 +105,7 @@ This works for both built-in commands and any extensions you have installed, mak
105105
106106
## Getting Help
107107
108-
- **List available extensions**: Run `pixi --help` to see all available extensions
108+
- **List available extensions**: Run `pixi --list` to see all available extensions
109109
- **Community**: Join our [Discord](https://discord.gg/kKV8ZxyzY4) for discussions and support
110110
111111
## See Also

src/assets/pixi/reference/cli/pixi/add.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,12 @@ pixi add [OPTIONS] <SPEC>...
6464
## Update Options
6565
- <a id="arg---no-install" href="#arg---no-install">`--no-install`</a>
6666
: Don't modify the environment, only modify the lock-file
67-
- <a id="arg---frozen" href="#arg---frozen">`--frozen=<FROZEN>`</a>
67+
- <a id="arg---frozen" href="#arg---frozen">`--frozen`</a>
6868
: Install the environment as defined in the lockfile, doesn't update lockfile if it isn't up-to-date with the manifest file
6969
<br>**env**: `PIXI_FROZEN`
70-
<br>**default**: `false`
71-
<br>**options**: `true`, `false`
72-
- <a id="arg---locked" href="#arg---locked">`--locked=<LOCKED>`</a>
70+
- <a id="arg---locked" href="#arg---locked">`--locked`</a>
7371
: Check if lockfile is up-to-date before installing the environment, aborts when lockfile isn't up-to-date with the manifest file
7472
<br>**env**: `PIXI_LOCKED`
75-
<br>**default**: `false`
76-
<br>**options**: `true`, `false`
7773

7874
## Global Options
7975
- <a id="arg---manifest-path" href="#arg---manifest-path">`--manifest-path <MANIFEST_PATH>`</a>

src/assets/pixi/reference/cli/pixi/auth/login.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pixi auth login [OPTIONS] <HOST>
1313

1414
## Arguments
1515
- <a id="arg-<HOST>" href="#arg-<HOST>">`<HOST>`</a>
16-
: The host to authenticate with (e.g. repo.prefix.dev)
16+
: The host to authenticate with (e.g. prefix.dev)
1717
<br>**required**: `true`
1818

1919
## Options

src/assets/pixi/reference/cli/pixi/install.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,12 @@ pixi install [OPTIONS]
4848
: Use environment activation cache (experimental)
4949

5050
## Update Options
51-
- <a id="arg---frozen" href="#arg---frozen">`--frozen=<FROZEN>`</a>
51+
- <a id="arg---frozen" href="#arg---frozen">`--frozen`</a>
5252
: Install the environment as defined in the lockfile, doesn't update lockfile if it isn't up-to-date with the manifest file
5353
<br>**env**: `PIXI_FROZEN`
54-
<br>**default**: `false`
55-
<br>**options**: `true`, `false`
56-
- <a id="arg---locked" href="#arg---locked">`--locked=<LOCKED>`</a>
54+
- <a id="arg---locked" href="#arg---locked">`--locked`</a>
5755
: Check if lockfile is up-to-date before installing the environment, aborts when lockfile isn't up-to-date with the manifest file
5856
<br>**env**: `PIXI_LOCKED`
59-
<br>**default**: `false`
60-
<br>**options**: `true`, `false`
6157

6258
## Global Options
6359
- <a id="arg---manifest-path" href="#arg---manifest-path">`--manifest-path <MANIFEST_PATH>`</a>

src/assets/pixi/reference/cli/pixi/list.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,12 @@ pixi list [OPTIONS] [REGEX]
3232
: Only list packages that are explicitly defined in the workspace
3333

3434
## Update Options
35-
- <a id="arg---frozen" href="#arg---frozen">`--frozen=<FROZEN>`</a>
35+
- <a id="arg---frozen" href="#arg---frozen">`--frozen`</a>
3636
: Install the environment as defined in the lockfile, doesn't update lockfile if it isn't up-to-date with the manifest file
3737
<br>**env**: `PIXI_FROZEN`
38-
<br>**default**: `false`
39-
<br>**options**: `true`, `false`
40-
- <a id="arg---locked" href="#arg---locked">`--locked=<LOCKED>`</a>
38+
- <a id="arg---locked" href="#arg---locked">`--locked`</a>
4139
: Check if lockfile is up-to-date before installing the environment, aborts when lockfile isn't up-to-date with the manifest file
4240
<br>**env**: `PIXI_LOCKED`
43-
<br>**default**: `false`
44-
<br>**options**: `true`, `false`
4541
- <a id="arg---no-install" href="#arg---no-install">`--no-install`</a>
4642
: Don't modify the environment, only modify the lock-file
4743

src/assets/pixi/reference/cli/pixi/reinstall.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,12 @@ pixi reinstall [OPTIONS] [PACKAGE]...
4444
: Use environment activation cache (experimental)
4545

4646
## Update Options
47-
- <a id="arg---frozen" href="#arg---frozen">`--frozen=<FROZEN>`</a>
47+
- <a id="arg---frozen" href="#arg---frozen">`--frozen`</a>
4848
: Install the environment as defined in the lockfile, doesn't update lockfile if it isn't up-to-date with the manifest file
4949
<br>**env**: `PIXI_FROZEN`
50-
<br>**default**: `false`
51-
<br>**options**: `true`, `false`
52-
- <a id="arg---locked" href="#arg---locked">`--locked=<LOCKED>`</a>
50+
- <a id="arg---locked" href="#arg---locked">`--locked`</a>
5351
: Check if lockfile is up-to-date before installing the environment, aborts when lockfile isn't up-to-date with the manifest file
5452
<br>**env**: `PIXI_LOCKED`
55-
<br>**default**: `false`
56-
<br>**options**: `true`, `false`
5753

5854
## Global Options
5955
- <a id="arg---manifest-path" href="#arg---manifest-path">`--manifest-path <MANIFEST_PATH>`</a>

0 commit comments

Comments
 (0)