Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/advanced/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ To install `pixi` you can run the following command in your terminal:
curl -fsSL https://pixi.sh/install.sh | sh
```

If your system doesn't have `curl`, you can use `wget`:

```bash
wget -qO- https://pixi.sh/install.sh | sh
```

The above invocation will automatically download the latest version of `pixi`, extract it, and move the `pixi` binary to `~/.pixi/bin`.
The script will also extend the `PATH` environment variable in the startup script of your shell to include `~/.pixi/bin`.
This allows you to invoke `pixi` from anywhere.
Expand Down
Loading