|
|
@@ -355,9 +355,11 @@ def uv():
|
|
|
return
|
|
|
|
|
|
client = httpx.Client()
|
|
|
- os = platform.system().lower()
|
|
|
arch = platform.machine()
|
|
|
- if arch == 'darwin':
|
|
|
+ if arch == 'arm64':
|
|
|
+ arch = 'aarch64'
|
|
|
+ os = platform.system().lower()
|
|
|
+ if os == 'darwin':
|
|
|
prefix = f'uv-{arch}-apple-darwin'
|
|
|
else:
|
|
|
prefix = f'uv-{arch}-unknown-linux-gnu'
|