ollama+deepseek+dify持续更新
deepseek ollama dify
·
确认好生产环境DNS
# vi /etc/resolv.conf
# wget https://ollama.com/install.sh
# sh install.sh
>>> Installing ollama to /usr/local
>>> Downloading Linux amd64 bundle
curl: (7) Failed to connect to github.com port 443: Connection refused
从错误发现脚本使用curl下载数据
生产环境挂PROXY
# vi install.sh
# export
# export http_proxy=http://172.17.68.68:7890/
# export https_proxy=http://172.17.68.68:7890/
# !sh
sh install.sh
安装完成
>>> Installing ollama to /usr/local
>>> Downloading Linux amd64 bundle
##################################################################################################################################################################################################### 100.0%
>>> Creating ollama user...
>>> Adding ollama user to render group...
>>> Adding ollama user to video group...
>>> Adding current user to ollama group...
>>> Creating ollama systemd service...
>>> Enabling and starting ollama service...
Created symlink /etc/systemd/system/default.target.wants/ollama.service → /etc/systemd/system/ollama.service.
>>> NVIDIA GPU installed.
拉模型
# ollama run deepseek-r1:7b
在此发现pull模型很慢, 还需要科学一下
# systemctl edit ollama.service
填入
[Service]
Environment="OLLAMA_HOST=0.0.0.0"
Environment="OLLAMA_ORIGINS=*"
Environment="HTTPS_PROXY=http://172.17.68.68:7890"
# systemctl daemon-reload
# systemctl restart ollama
重新pull
# ollama run deepseek-r1:7b
安装dify
# docker -v
Docker version 24.0.7, build afdd53b
# git clone https://github.com/langgenius/dify.git
Cloning into 'dify'...
remote: Enumerating objects: 137021, done.
remote: Counting objects: 100% (22075/22075), done.
remote: Compressing objects: 100% (1139/1139), done.
remote: Total 137021 (delta 21476), reused 20954 (delta 20935), pack-reused 114946 (from 2)
Receiving objects: 100% (137021/137021), 68.87 MiB | 8.77 MiB/s, done.
Resolving deltas: 100% (101593/101593), done.
# docker compose up -d
[+] Running 0/9
⠸ sandbox Pulling 5.4s
⠸ weaviate Pulling 5.4s
⠸ ssrf_proxy Pulling 5.4s
⠸ web Pulling 5.4s
⠸ nginx Pulling 5.4s
⠸ db Pulling 5.4s
⠸ api Pulling 5.4s
⠸ worker Pulling 5.4s
⠸ redis Pulling
更多推荐
所有评论(0)