stable diffusion搭建指南
项目地址:https://github.com/AUTOMATIC1111/stable-diffusion-webui
在腾讯云算力服务器最新执行启动命令
nohup python3 -u launch.py --skip-prepare-environment --xformers --listen --enable-insecure-extension-access --port=6889 --api > /var/log/sd_service.log &
nohup python3 -u launch.py --skip-prepare-environment --xformers --listen --enable-insecure-extension-access --port=6889 --api --api-log --no-gradio-queue --enable-console-prompts > /var/log/sd_service.log &
conda管理python环境,建议3.9以上版本
#查看环境
conda info --env
#创建环境
conda create --name python310 python=3.10
#激活环境
conda activate pytho