Here's an examply Python script from the uv website[0]:
#!/usr/bin/env -S uv run --script # # /// script # requires-python = ">=3.12" # dependencies = ["httpx"] # /// import httpx print(httpx.get("https://example.com"))
[0] https://docs.astral.sh/uv/guides/scripts/#using-a-shebang-to...
Here's an examply Python script from the uv website[0]:
This will auto-install Python 3.12 (or greater) in a per-script virtual environment, along with the httpx package from pypi & immediately execute the script, on any system that has uv.[0] https://docs.astral.sh/uv/guides/scripts/#using-a-shebang-to...