|
const PYTHON_MIRROR = { |
|
settingId: "Comfy-Desktop.UV.PythonInstallMirror", |
|
mirror: "https://github.com/astral-sh/python-build-standalone/releases/download", |
|
fallbackMirror: "https://bgithub.xyz/astral-sh/python-build-standalone/releases/download", |
|
validationPathSuffix: "/20250115/cpython-3.10.16+20250115-aarch64-apple-darwin-debug-full.tar.zst.sha256" |
|
}; |
|
const PYPI_MIRROR = { |
|
settingId: "Comfy-Desktop.UV.PypiInstallMirror", |
|
mirror: "https://pypi.org/simple/", |
|
fallbackMirror: "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple" |
|
}; |
|
export { |
|
PYTHON_MIRROR as P, |
|
PYPI_MIRROR as a |
|
}; |
|
|
|
|