当前位置:   article > 正文

[Linux容器]手把手搭建Stable-Diffusion容器_debian stable diffusion

debian stable diffusion

最近的AI绘画可谓是特别火呀,这一期带大家使用容器搭建Stable-Diffusion

1.首先我们安装Docker

 Debian

sudo apt update && sudo apt install -y docker.io

 Redhat

sudo yum makecache && sudo yum install -y podman

 

 2.我们拉取debian镜像

 Debian 

docker pull debian

 RHEL

podman pull debian

3.开始构造镜像

docker run -p 1234:1234 -itd --name stable debian
podman run -p 1234:1234 -itd --name stable debian
  1. docker exec -it stable bash
  2. podman exec -it stable bash
  1. sudo apt update && sudo apt install -y python3 python3-pip python3-venv git \
  2. && pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple \
  3. && pip install torch \
  4. && pip install torchvision \
  5. && pip install gfpgan \
  6. && pip install clip
  7. && pip install opencv-python-headless
  8. && git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui \

 4.复制模型进去

docker/podman cp models stable:/stable-diffusion-webui-master/models/

 5.运行容器内的SD

普通显卡

python3 launch.py --port 1234 --listen

CPU硬解 

  1. export COMMANDLINE_ARGS=--skip-torch-cuda-test
  2. python3 launch.py --no-half --port 1234 --listen

 

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/99081?site
推荐阅读
相关标签
  

闽ICP备14008679号