<@ULVA73B9P> powershell -ExecutionPolicy ByPass -c...
# ask-marvin
c
@Marvin powershell -ExecutionPolicy ByPass -c 'irm https://astral.sh/uv/install.ps1 | iex'
m
thought for 23.1 seconds
If you’re installing uv on Windows, use the official one‑liner without angle brackets around the URL:
Copy code
powershell -ExecutionPolicy Bypass -c "irm <https://astral.sh/uv/install.ps1> | iex"
Notes: -
irm
= Invoke-RestMethod,
iex
= Invoke-Expression (downloads and runs the installer) - You may need to restart your terminal to pick up PATH changes - Verify the install with:
Copy code
uv --version
Official docs: uv installation guide If you hit an error running that command, can you share the full output?