当前位置:AIGC资讯 > AIGC > 正文

ubuntu的stable-diffusion-webui安装和大模型使用

需要显卡基于Ubuntu20.04安装输入nvidia-smi有输出,可以查看cuda的版本

一.安装miniconda

1.下载最新的安装文件。在命令行中输入以下命令即可:

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh

2.执行下载好的文件

./Miniconda3-latest-Linux-x86_64.sh

3.在交互提示中不断输入

Enter 或者 yes

4.安装完成后

Source .bashr

5.搭建python虚拟环境

使用conda创建虚拟环境sdwebui,使用的python版本为3.10.9(stable-diffusion-webui用的python版本为3.10.6)

conda create -n sdwebui python==3.10.9

激活环境

conda activate sdwebui

6.升级pip并更改默认库包下载地址为清华镜像

python -m pip install --upgrade pip

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

二.安装stable-diffusion-webui

1.切换到当前用户目录下,使用git命令下载stable-diffusion-webui源码

git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git

2.放模型文件到指定目录(大模型需要自己下载网上一大堆需要自己测试哪个风格是自己喜欢的)

3.启动stable-diffusion-webui

cd stable-diffusion-webui/

python launch.py或者./webui.sh

下载有可能中断,多下载几次就好了

更新时间 2024-06-15