(七)腾讯cloudstudio+Stable-Diffusion-webui AI绘画教程-安装Stable-Diffusion-WebUI
一、说明
本文选择安装stable-diffusion-webui最新版本
cloud studio 免费版最大的问题是空间不足,我晚上上传时超过了硬盘大小,直接不能启动,没办法,删除,又建了一个工作空间
二、安装
1、打开终端
2、配置Git代理,使用gh-proxy
git config --global url."https://gh-proxy.com/".insteadOf https://
这个代理不行,可以在下面网页上找
https://github.com/Heroic-Studio/Google-Mirrors?tab=readme-ov-filehttps://github.com/Heroic-Studio/Google-Mirrors?tab=readme-ov-file
3、安装依赖
apt-get update
apt install build-essential
sudo apt install libgl1
apt-get -y install libtcmalloc-minimal4
apt install ffmpeg
apt-get install bc
4、提取代码
git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
5、修改部分代码
webui-user.sh
export COMMANDLINE_ARGS="--listen --enable-insecure-extension-access --xformers"
launch_utils.py
def prepare_environment():
torch_index_url = os.environ.get('TORCH_INDEX_URL', "https://mirrors.aliyun.com/pytorch-wheels/cu121")
torch_command = os.environ.get('TORCH_COMMAND', f"pip install torch==2.1.2 torchvision==0.16.2 -f {torch_index_url}")
6、解决不能正常访问huggingface.co 网站
pip install -U huggingface_hub
打开家目录下文件: ~/.bashrc, 在文件末尾插入一行:
export HF_ENDPOINT=https://hf-mirror.com
然后关闭 ~/.bashrc 文件, 在命令行中运行如下命令使得上述配置生效:
source ~/.bashrc
7、上传已有模型
全部选中,直接上传
上传完成后既可以运行了
8、运行
# 由于是root账户,所以会出错,执行下面
bash webui.sh -f
9、 如何浏览器操作
cloudstudio有内置浏览器,我没用,直接使用透传,远程访问即可
三、总结
1、硬盘空间太小,我们可以创建多个工作空间,分开运行测试
2、上外网还是不行的,得处理好下载的问题