기술은 나의 도구

Stable Diffusion WebUI 실행하기 (Apple Silicon)

레퍼런스 https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Installation-on-Apple-Silicon

실행방법

아래는 python 이 설치되어 있다는 가정하에 작성된 명령들입니다.

## 소스 다운로드
$ cd ~/Documents/Project/
$ git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
$ cd stable-diffusion-webui

## virtual 환경 실행
$ python3 -m venv ./env
$ source env/bin/activate

## 패키지 설치
$ pip install -r requirements.txt

상단 레퍼런스의 v1-5-pruned-emaonly.ckpt 링크 혹은 허깅페이스에서 ckpt 파일을 다운로드한 다음 models/Stable-diffusion 디렉토리에 옮겨주고 루트경로에서 아래 명령을 실행합니다.

$ mv ~/Downloads/v1-5-pruned-emaonly.ckpt ./models/Stable-diffusion
$ ./webui.sh

http://127.0.0.1:7860/ 경로의 웹페이지가 자동으로 열리는데 다운로드한 모델을 선택하고 프롬프트를 입력한 다음 Generate 를 클릭하면 이미지가 생성됩니다.

실행결과

Stable Diffusion WebUI

  • #Stable Diffusion
  • #WebUI

Table of Contents