|
2 | 2 | title: Home |
3 | 3 | template: home.html |
4 | 4 | --- |
| 5 | +# Pixi |
5 | 6 |
|
6 | | - |
| 7 | +Pixi is a **fast, modern, and reproducible** package management tool for developers of all backgrounds. |
7 | 8 |
|
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). |
9 | 18 |
|
10 | | -Pixi is a **fast, modern, and reproducible** package management tool for developers of all backgrounds. |
| 19 | +## Highlights |
11 | 20 |
|
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`. |
50 | 38 |
|
51 | 39 | --- |
52 | 40 |
|
@@ -75,7 +63,7 @@ pixi global install gh nvim ipython btop ripgrep |
75 | 63 |
|
76 | 64 | --- |
77 | 65 |
|
78 | | -## What is the difference with Pixi? |
| 66 | +## How Tools Compare to Pixi |
79 | 67 |
|
80 | 68 | | Builtin Core Features | Pixi | Conda | Pip | Poetry | uv | |
81 | 69 | |-----------------------------|------|-------|-----|--------|----| |
|
0 commit comments