Running on local URL: http://127.0.0.1:7860 To create a public link, set `share=True` in `launch()`.所以
python webui.py --listen結果是看這一個。
要 clont source,還要另外 download model.ckpt。
然後啟動 webui.py
最近的吃面輸出..我的是..
這一篇有一些 animate model,一開始還有用 command line download magnet 的 package 安裝
這個是一個給 linux 用的 install script,預先用conda create 好python3 的環境。
然後這一篇 是官方的安裝說明?
還有說要一些其他的 package ,例如
Linux 安裝大概就是:
安裝 python 3.10 環境 (conda ?)
git clone git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
copy ckpt 到 models/Stable-diffusion 下,rename model.ckpt
run webui.sh
它會create venv,再裡面安裝 requirments.txt
所以要單獨run webui.py 的話,要自己install requirement.txt
然後還是有一些沒裝, clip, gdown,
看 webui.sh,啟動 venv 後就 run launch.py
launch.py 安裝 gfpgan, clip, xformers, deepdanbooru, pyngrok
再 install requirements.txt
2024/11/8 update:
用 conda
conda create -n stablediffusion python=3.11進去之後,clone
git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui因為是用 conda,所以修改 webui-user.sh:
diff --git a/webui-user.sh b/webui-user.sh index 70306c60..ac9cf712 100644 --- a/webui-user.sh +++ b/webui-user.sh @@ -19,7 +19,7 @@ #export GIT="git" # python3 venv without trailing slash (defaults to ${install_dir}/${clone_dir}/venv) -#venv_dir="venv" +venv_dir="-"可以看 webui.sh,裡面有關 venv_dir
之後就是自動...
$ ./webui.sh ################################################################ Install script for stable-diffusion + Web UI Tested on Debian 11 (Bullseye), Fedora 34+ and openSUSE Leap 15.4 or newer. ..這一版會自動下載 ckpt..
Downloading: "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.safetensors" to /home...sion-webui/models/Stable-diffusion/v1-5-pruned-emaonly.safetensors其實需要..
sudo apt-get install google-perftools要安裝xformers 的話,可以啟動加上
$ ./webui.sh --xformers他檢查到沒有,就會安裝,之後就不用加這個 option。