--8<-- [start:example]

## Examples

Every environment gets a block: its name, the version of the package it is named
after, and a row per part of the manifest that has something to show.
Environments holding more than one package list them under `dependencies`
instead of in the header.

```
pixi global list
```
Results in:
```
bat 0.26.1
└── exposed       bat

demo
├── dependencies  bat 0.26.1, ripgrep 15.2.0
└── exposed       demo-cli -> bat

python 3.14.6
└── exposed       idle3
                  idle3.14
                  pydoc
                  pydoc3
                  pydoc3.14
                  python
                  python3
                  python3-config
                  python3.1
                  python3.14
                  python3.14-config
```

Here is an example of list of a single environment, which adds the channels, the
size the environment takes up on disk, and the full package table:
```
pixi global list --environment demo
```
Results in:
```
demo
├── dependencies  bat 0.26.1, ripgrep 15.2.0
├── exposed       demo-cli -> bat
├── channels      conda-forge
└── size          6.2 MiB

Package        Version  Build       Size
_openmp_mutex  4.5      20_gnu      28.3 KiB
bat            0.26.1   hdab8a38_0  2.8 MiB
libgcc         16.1.0   ha9f2e26_1  1 MiB
libgomp        16.1.0   he0feb66_1  625.4 KiB
ripgrep        15.2.0   hf19af3b_1  1.8 MiB
```


--8<-- [end:example]
