- 目的
- macにstable diffusion webuiをインストールする
- 結論
- 以下のコマンドを実行するとstable diffusion webuiがインストールできる
- 実行コマンド
- ソースをDLする
-
https://github.com/AUTOMATIC1111/stable-diffusion-webui
- ここでwebからソースをインストールする
-
- Homebrew をインストールする
- 入ってなければ こちら を参考にインストールする
- stable diffusion web UIのインストール
-
brew install cmake protobuf rust python@3.9 git wget
- pythonのバージョンは入ってるバージョンに合わせる
-
/Users/kon: python3 -V Python 3.9.6
-
- リポジトリをローカルPCにcloneする
-
git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
-
- ファイル編集
- webui-macos-env.shを編集します。
-
vi stable-diffusion-webui/webui-macos-env.sh
- 変更内容
- 以下に変更する
-
export COMMANDLINE_ARGS="--skip-torch-cuda-test --upcast-sampling --no-half-vae --use-cpu interrogate --no-half"
-
- 変更前
-
export COMMANDLINE_ARGS="--skip-torch-cuda-test --upcast-sampling --no-half-vae --use-cpu interrogate"
-
- 以下に変更する
-
- webui-macos-env.shを編集します。
- シェルを起動する
-
bash stable-diffusion-webui/webui.sh
-
- 画面が表示されたらOK
- http://127.0.0.1:7860/
-
- 動作確認
- txt2img に cat を設定してGenetate
- 画像が生成されればOK
- 終了する方法
- プロンプト上で
-
Ctrl + C
-
- プロンプト上で
- 再度起動する方法
- プロンプト上で
-
bash stable-diffusion-webui/webui.sh
-
- プロンプト上で
- ソースをDLする