cat > /etc/apt/sources.list.d/ubuntu.sources <<EOF
Types: deb
URIs: https://mirrors.tuna.tsinghua.edu.cn/ubuntu/
Suites: noble noble-updates noble-security
Components: main restricted universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
EOF


apt install python3-pip -y
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip install huggingface-hub
df download RedHatAI/DeepSeek-R1-Distill-Qwen-32B-quantized.w8a8 --local-dir ./model

hf auth login
export http_proxy="http://192.168.0.101:7897"
export https_proxy="http://192.168.0.101:7897"
export no_proxy="localhost,127.0.0.1,::1"

hf download RedHatAI/DeepSeek-R1-Distill-Qwen-32B-quantized.w8a8 --local-dir ./model

切换国内下载源:

export HF_ENDPOINT=https://hf-mirror.com
hf download RedHatAI/DeepSeek-R1-Distill-Qwen-32B-quantized.w8a8 --local-dir ./model

镜像官方地址:

huggingface.co/RedHatAI/DeepSeek-R1-Distill-Qwen-32B-quantized.w8a8