Created
December 15, 2024 21:46
-
-
Save kolibril13/321704c2ed86c13a75f104a8f32ef1fd to your computer and use it in GitHub Desktop.
downloads wheels files for all platforms
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
MY_PACKAGE="polars" uv run https://gist.githubusercontent.com/kolibril13/321704c2ed86c13a75f104a8f32ef1fd/raw/d893817cc8bba3ebd37c708b9c3308cf6123353d/wheels_downloader.py