Skip to content

Instantly share code, notes, and snippets.

@kolibril13
Created December 15, 2024 21:46
Show Gist options
  • Save kolibril13/321704c2ed86c13a75f104a8f32ef1fd to your computer and use it in GitHub Desktop.
Save kolibril13/321704c2ed86c13a75f104a8f32ef1fd to your computer and use it in GitHub Desktop.
downloads wheels files for all platforms
import subprocess
import os
# Disable warning for pip installer update notes
os.environ["PIP_DISABLE_PIP_VERSION_CHECK"] = "1"
build_platforms = [
"win_amd64", # Windows x64
"manylinux2014_x86_64", # Linux x64
"macosx_12_0_arm64", # macOS ARM
"macosx_10_16_x86_64" # macOS Intel
]
required_package = os.getenv("MY_PACKAGE", "pandas")
for platform in build_platforms:
command = [
"uv",
"run",
"--python",
"3.11",
"pip",
"download",
required_package,
"--dest=./wheels",
"--only-binary=:all:", # Restrict to binary packages only
"--no-deps", # Avoid downloading dependencies
"--python-version=3.11",
f"--platform={platform}"
]
result = subprocess.run(command, capture_output=True, text=True)
print(result.stdout)
print(result.stderr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment