intel MacにreForgeをインストール

 https://github.com/Panchovix/stable-diffusion-webui-reForge

 

インストール

git clone https://github.com/Panchovix/stable-diffusion-webui-reForge.git
 
webui-macos-env.shを開いてコメントアウト
#if [[ "$(sysctl -n machdep.cpu.brand_string)" =~ ^.*"Intel".*$ ]]; then
# export TORCH_COMMAND="pip install torch==2.3.1 torchvision==0.18.1"
#else
# export TORCH_COMMAND="pip install torch==2.4.0 torchvision==0.19.0"
#fi

インストール
cd stable-diffusion-webui-reForge
./webui.sh 
 
エラー
Legacy Preprocessor init warning: Unable to install insightface automatically. Please try run `pip install insightface` manually.
Installing forge_legacy_preprocessor requirement: handrefinerportable
Installing forge_legacy_preprocessor requirement: depth_anything
レガシー プリプロセッサの初期化警告: insightface を自動的にインストールできません。`pip install insightface` を手動で実行してください。
forge_legacy_preprocessor のインストール要件: handrefinerportable
forge_legacy_preprocessor のインストール要件: depth_anything
 
Traceback (most recent call last):
File "/Users/yuuki/Desktop/AI/stable-diffusion-webui-reForge/launch.py", line 51, in <module>
main()
File "/Users/yuuki/Desktop/AI/stable-diffusion-webui-reForge/launch.py", line 47, in main
start()
File "/Users/yuuki/Desktop/AI/stable-diffusion-webui-reForge/modules/launch_utils.py", line 540, in start
import webui
File "/Users/yuuki/Desktop/AI/stable-diffusion-webui-reForge/webui.py", line 17, in <module>
initialize_forge()
File "/Users/yuuki/Desktop/AI/stable-diffusion-webui-reForge/modules_forge/initialization.py", line 49, in initialize_forge
import ldm_patched.modules.model_management as model_management
File "/Users/yuuki/Desktop/AI/stable-diffusion-webui-reForge/ldm_patched/modules/model_management.py", line 121, in <module>
total_vram = get_total_memory(get_torch_device()) / (1024 * 1024)
File "/Users/yuuki/Desktop/AI/stable-diffusion-webui-reForge/ldm_patched/modules/model_management.py", line 90, in get_torch_device
return torch.device(torch.cuda.current_device())
File "/Users/yuuki/Desktop/AI/stable-diffusion-webui-reForge/venv/lib/python3.10/site-packages/torch/cuda/__init__.py", line 769, in current_device
_lazy_init()
File "/Users/yuuki/Desktop/AI/stable-diffusion-webui-reForge/venv/lib/python3.10/site-packages/torch/cuda/__init__.py", line 289, in _lazy_init
raise AssertionError("Torch not compiled with CUDA enabled")
AssertionError: Torch not compiled with CUDA enabled

コマンドラインを変えたら起動した
export COMMANDLINE_ARGS="--listen --enable-insecure-extension-access --always-cpu --skip-torch-cuda-test --no-download-sd-model"
エクステンションの場所はシンボリックリンクで共有できた

CPUだとA1111の方が速かった。絵は少し違うけど同じようなのが出る。

torch 2.1.2を入れる
./venv/bin/python -m pip uninstall torch torchivision
export COMMANDLINE_ARGS="--listen --reinstall-torch --always-cpu"
export TORCH_COMMAND="pip install torch==2.1.2 torchvision"

--unet-in-bf16 --vae-in-bf16 保存してくれなくなった
 


yuki

初めての作業で調べた事、困った時の解決方法を記録するブログ。 主なテーマは、パソコン、プログラミング、カメラ、DTM、スピリチュアル、化学物質過敏症

コメントを投稿

Please Select Embedded Mode To Show The Comment System.*