Skip to content

Instantly share code, notes, and snippets.

@maphew
Created February 24, 2025 19:38
Show Gist options
  • Save maphew/0cb4b65777732451895b490e61d7e236 to your computer and use it in GitHub Desktop.
Save maphew/0cb4b65777732451895b490e61d7e236 to your computer and use it in GitHub Desktop.
seeking to get `uv run` to work with gdal binary wheel
# /// script
# requires-python = ">=3.8"
# dependencies = [
# "gdal",
# ]
#pyproject.toml
#[tool.uv]
# find-links = ["https://girder.github.io/large_image_wheels"]
# ///
''' GDAL will fail with uv or pip install on machines that don't have a full build environment.
A Workaround is to use prebuilt binary wheel instead. However structuring script header
metadata to do this is unclear.
See https://github.com/astral-sh/uv/issues/11466
If this script is invoked with `uv run run-gdal.py` and you see 'hi!' instead of an error, a
solution has been found.
'''
print('hi!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment