DeepSeek本地化部署笔记
Table of Contents
1. Ollama 快速试用
1.1. 安装 ollama 客户端
下载并安装 ollama
wget -c https://github.com/ollama/ollama/releases/download/v0.5.7/ollama-linux-amd64.tgz
直接解压安装
sudo tar -C /usr -xzf ollama-linux-amd64.tgz
1.2. 运行 deepseek 模型
运行 deepseek 模型 | deepseek-r1
ollama run deepseek-r1:32b
2. 企业级部署
2.1. 下载模型
huggingface-cli 配置, 配置国内源 hf-mirror
pip install -U huggingface_hub # huggingface mirror export HF_ENDPOINT=https://hf-mirror.com
hf_transfer 加速 huggingface 文件下载
pip install -U hf_transfer export HF_HUB_ENABLE_HF_TRANSFER=1
下载 DeepSeek-R1 模型
huggingface-cli download --resume-download deepseek-ai/DeepSeek-R1 --local-dir DeepSeek-R1 huggingface-cli download deepseek-ai/DeepSeek-R1 --local-dir DeepSeek-R1