Skip to content

Commit

Permalink
Use more universal windows instructions
Browse files Browse the repository at this point in the history
Recommend installing puffin with

```
powershell -c "irm https://github.com/axodotdev/cargo-dist/releases/latest/download/cargo-dist-installer.ps1 | iex"
```

instead of

```
irm https://github.com/axodotdev/cargo-dist/releases/latest/download/cargo-dist-installer.ps1 | iex
```

to support installing on cmd.exe, the classic non-powershell windows terminal.

See axodotdev/cargo-dist#458 for background. This will also be included in the next cargo-dist release.
  • Loading branch information
konstin committed Feb 21, 2024
1 parent 19890fe commit 4ccf1fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ Install uv with our standalone installers, or from [PyPI](https://pypi.org/proje
# On macOS and Linux.
curl -LsSf https://astral.sh/uv/install.sh | sh

# On Windows (with PowerShell).
irm https://astral.sh/uv/install.ps1 | iex
# On Windows.
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

# With pip.
pip install uv
Expand Down

0 comments on commit 4ccf1fc

Please sign in to comment.