You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's not a great user experience to need to be aware which flags are global and pass them in a different location.
e.g.
❯ uv run --isolated --with anyio -- python -c "print('hi')"
error: unexpected argument '--isolated' found
tip: to pass '--isolated' as a value, use '-- --isolated'
Usage: uv run [OPTIONS] [TARGET] [ARGS]...
For more information, try '--help'.
vs
❯ uv --isolated run --with anyio -- python -c "print('hi')"
warning: `uv run` is experimental and may change without warning.
Resolved 3 packages in 195ms
Downloaded 3 packages in 78ms
Installed 3 packages in 8ms
+ anyio==4.3.0
+ idna==3.7
+ sniffio==1.3.1
hi
The text was updated successfully, but these errors were encountered:
It's not a great user experience to need to be aware which flags are global and pass them in a different location.
e.g.
vs
The text was updated successfully, but these errors were encountered: