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

Commit 04f09b5

Browse files
KemingHegithub-actions[bot]
authored andcommitted
docs(src/assets/): update pixi official documentation
1 parent a4b0501 commit 04f09b5

107 files changed

Lines changed: 571 additions & 298 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

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-12-09T22:06:22Z",
5-
"commit_sha": "4fab35080f6422c4c278f9eb593f41cf9321bd92"
4+
"updated_at": "2025-12-16T22:06:02Z",
5+
"commit_sha": "5121397ef41fdee7aa62326f85029826d6263310"
66
}

src/assets/pixi/index.md

Lines changed: 30 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -2,51 +2,39 @@
22
title: Home
33
template: home.html
44
---
5+
# Pixi
56

6-
![pixi logo](assets/banner.svg)
7+
Pixi is a **fast, modern, and reproducible** package management tool for developers of all backgrounds.
78

8-
## Why Pixi?
9+
=== "Linux & macOS"
10+
```shell
11+
curl -fsSL https://pixi.sh/install.sh | sh
12+
```
13+
=== "Windows"
14+
```powershell
15+
powershell -ExecutionPolicy Bypass -c "irm -useb https://pixi.sh/install.ps1 | iex"
16+
```
17+
More installation options can be found [here](installation.md).
918

10-
Pixi is a **fast, modern, and reproducible** package management tool for developers of all backgrounds.
19+
## Highlights
1120

12-
<div class="feature-grid">
13-
<a href="workspace/lockfile">
14-
<div class="feature-card">
15-
<strong>🔄 Reproducibility</strong>
16-
<p>Isolated, easily recreated environments with lockfiles built-in</p>
17-
</div>
18-
</a>
19-
<a href="workspace/advanced_tasks/">
20-
<div class="feature-card">
21-
<strong>🛠️ Tasks</strong>
22-
<p>Manage complex pipelines effortlessly.</p>
23-
</div>
24-
</a>
25-
<a href="workspace/multi_platform_configuration/">
26-
<div class="feature-card">
27-
<strong>🌐 Multi Platform</strong>
28-
<p>Works on Linux, macOS, Windows, and more.</p>
29-
</div>
30-
</a>
31-
<a href="workspace/multi_environment/">
32-
<div class="feature-card">
33-
<strong>🧩 Multi Environment</strong>
34-
<p>Compose multiple environments in one manifest.</p>
35-
</div>
36-
</a>
37-
<a href="python/tutorial/">
38-
<div class="feature-card">
39-
<strong>🐍 Python</strong>
40-
<p>Support for <code>pyproject.toml</code> and PyPI through uv.</p>
41-
</div>
42-
</a>
43-
<a href="global_tools/introduction/">
44-
<div class="feature-card">
45-
<strong>🌍 Global Tools</strong>
46-
<p>Install global tools, safely isolated. Replacing <code>apt</code>, <code>homebrew</code>, <code>winget</code></p>
47-
</div>
48-
</a>
49-
</div>
21+
- [🔄 **Reproducibility**](workspace/lockfile.md)
22+
Isolated, easily recreated environments with lockfiles built-in
23+
24+
- [🛠️ **Tasks**](workspace/advanced_tasks.md)
25+
Manage complex pipelines effortlessly.
26+
27+
- [🌐 **Multi Platform**](workspace/multi_platform_configuration.md)
28+
Works on Linux, macOS, Windows, and more.
29+
30+
- [🧩 **Multi Environment**](workspace/multi_environment.md)
31+
Compose multiple environments in one manifest.
32+
33+
- [🐍 **Python**](python/tutorial.md)
34+
Support for `pyproject.toml` and PyPI through uv.
35+
36+
- [🌍 **Global Tools**](global_tools/introduction.md)
37+
Install global tools, safely isolated. Replacing `apt`, `homebrew`, `winget`.
5038

5139
---
5240

@@ -75,7 +63,7 @@ pixi global install gh nvim ipython btop ripgrep
7563

7664
---
7765

78-
## What is the difference with Pixi?
66+
## How Tools Compare to Pixi
7967

8068
| Builtin Core Features | Pixi | Conda | Pip | Poetry | uv |
8169
|-----------------------------|------|-------|-----|--------|----|

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
---
2+
title: pixi
3+
---
14
<!--- This file is autogenerated. Do not edit manually! -->
2-
# <code>pixi</code>
5+
# pixi
36

47
--8<-- "docs/reference/cli/pixi_extender:description"
58

@@ -13,7 +16,7 @@ pixi [OPTIONS] [COMMAND]
1316
|---------|-------------|
1417
| [`add`](pixi/add.md) | Adds dependencies to the workspace |
1518
| [`auth`](pixi/auth.md) | Login to prefix.dev or anaconda.org servers to access private channels |
16-
| [`build`](pixi/build.md) | Lock file and installation configuration with --as-is support Used by shell, shell-hook, and run commands |
19+
| [`build`](pixi/build.md) | Build a conda package from a Pixi package. |
1720
| [`clean`](pixi/clean.md) | Cleanup the environments |
1821
| [`completion`](pixi/completion.md) | Generates a completion script for a shell |
1922
| [`config`](pixi/config.md) | Configuration management |

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
---
2+
title: pixi add
3+
---
14
<!--- This file is autogenerated. Do not edit manually! -->
2-
# <code>[pixi](../pixi.md) add</code>
5+
# [pixi](../pixi.md) add
36

4-
## About
57
Adds dependencies to the workspace
68

79
--8<-- "docs/reference/cli/pixi/add_extender:description"
@@ -75,7 +77,7 @@ pixi add [OPTIONS] <SPEC>...
7577
<br>**env**: `PIXI_LOCKED`
7678

7779
## Global Options
78-
- <a id="arg---manifest-path" href="#arg---manifest-path">`--manifest-path <MANIFEST_PATH>`</a>
80+
- <a id="arg---manifest-path" href="#arg---manifest-path">`--manifest-path (-m) <MANIFEST_PATH>`</a>
7981
: The path to `pixi.toml`, `pyproject.toml`, or the workspace directory
8082

8183
## Description

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
---
2+
title: pixi auth
3+
---
14
<!--- This file is autogenerated. Do not edit manually! -->
2-
# <code>[pixi](../pixi.md) auth</code>
5+
# [pixi](../pixi.md) auth
36

4-
## About
57
Login to prefix.dev or anaconda.org servers to access private channels
68

79
--8<-- "docs/reference/cli/pixi/auth_extender:description"

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
---
2+
title: pixi auth login
3+
---
14
<!--- This file is autogenerated. Do not edit manually! -->
2-
# <code>[pixi](../../pixi.md) [auth](../auth.md) login</code>
5+
# [pixi](../../pixi.md) [auth](../auth.md) login
36

4-
## About
57
Store authentication information for a given host
68

79
--8<-- "docs/reference/cli/pixi/auth/login_extender:description"

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
---
2+
title: pixi auth logout
3+
---
14
<!--- This file is autogenerated. Do not edit manually! -->
2-
# <code>[pixi](../../pixi.md) [auth](../auth.md) logout</code>
5+
# [pixi](../../pixi.md) [auth](../auth.md) logout
36

4-
## About
57
Remove authentication information for a given host
68

79
--8<-- "docs/reference/cli/pixi/auth/logout_extender:description"

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
---
2+
title: pixi build
3+
---
14
<!--- This file is autogenerated. Do not edit manually! -->
2-
# <code>[pixi](../pixi.md) build</code>
5+
# [pixi](../pixi.md) build
36

4-
## About
5-
Lock file and installation configuration with --as-is support Used by shell, shell-hook, and run commands
7+
Build a conda package from a Pixi package.
68

79
--8<-- "docs/reference/cli/pixi/build_extender:description"
810

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
---
2+
title: pixi clean
3+
---
14
<!--- This file is autogenerated. Do not edit manually! -->
2-
# <code>[pixi](../pixi.md) clean</code>
5+
# [pixi](../pixi.md) clean
36

4-
## About
57
Cleanup the environments
68

79
--8<-- "docs/reference/cli/pixi/clean_extender:description"
@@ -26,7 +28,7 @@ pixi clean [OPTIONS] [COMMAND]
2628
: Only remove the pixi-build cache
2729

2830
## Global Options
29-
- <a id="arg---manifest-path" href="#arg---manifest-path">`--manifest-path <MANIFEST_PATH>`</a>
31+
- <a id="arg---manifest-path" href="#arg---manifest-path">`--manifest-path (-m) <MANIFEST_PATH>`</a>
3032
: The path to `pixi.toml`, `pyproject.toml`, or the workspace directory
3133

3234
## Description

src/assets/pixi/reference/cli/pixi/clean/cache.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
---
2+
title: pixi clean cache
3+
---
14
<!--- This file is autogenerated. Do not edit manually! -->
2-
# <code>[pixi](../../pixi.md) [clean](../clean.md) cache</code>
5+
# [pixi](../../pixi.md) [clean](../clean.md) cache
36

4-
## About
57
Clean the cache of your system which are touched by pixi
68

79
--8<-- "docs/reference/cli/pixi/clean/cache_extender:description"

0 commit comments

Comments
 (0)