mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
Add -ExecutionPolicy ByPass
to Windows installer recommendations (#7106)
This commit is contained in:
parent
c494f6912c
commit
3d57b6e795
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ uv provides a standalone installer to download and install uv:
|
|||
=== "Windows"
|
||||
|
||||
```console
|
||||
$ powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
|
||||
$ powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
|
||||
```
|
||||
|
||||
By default, uv is installed to `~/.cargo/bin`.
|
||||
|
@ -51,7 +51,7 @@ Request a specific version by including it in the URL:
|
|||
=== "Windows"
|
||||
|
||||
```console
|
||||
$ powershell -c "irm https://astral.sh/uv/0.4.6/install.ps1 | iex"
|
||||
$ powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/0.4.6/install.ps1 | iex"
|
||||
```
|
||||
|
||||
!!! tip
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue