yeonghoon.kim

  • 게시판
  • 갤러리
  • aws

Stable Diffusion 설치 - rockylinux9 [테스트 - 나 / 정리 -chatgpt]

김영훈 2024.01.02 15:27 조회 수 : 855

0. 환경 설정

  • 시스템: Rocky Linux 9
  • Python 버전: 3.9
  • 기타 설정: SELinux 및 방화벽 비활성화

1. Pip 설치

  1. Python 패키지 관리자 Pip 설치:
    dnf install -y python-pip   
  2. Pip 업그레이드:
    python -m pip install --upgrade pip   

2. Git 설치

  • Git 설치:
    dnf install -y git   

3. Stable Diffusion 소스 다운로드

  • Stable Diffusion 리포지토리 클론:
    git clone https://github.com/Stability-AI/stablediffusion   

4. Python 모듈 설치

  1. 클론된 디렉토리로 이동:
    cd stablediffusion   
  2. 필요한 Python 모듈 설치:
    pip install -r requirements.txt   

5. Classic Img2Img 사용 방법

  • 명령어:
    python scripts/img2img.py --prompt "A fantasy landscape, trending on artstation" --init-img <path-to-img.jpg> --strength 0.8 --ckpt <path/to/model.ckpt>   

6. Text-to-Image 사용 방법

  • 가중치 파일(SD2.1-v, SD2.1-base) 다운로드 필요
  • 명령어:
    python scripts/txt2img.py --prompt "a professional photograph of an astronaut riding a horse" --ckpt <path/to/768model.ckpt/> --config configs/stable-diffusion/v2-inference-v.yaml --H 768 --W 768    

참고사항:

  • SELinux 및 방화벽 비활성화는 시스템 보안에 영향을 줄 수 있으므로, 필요에 따라 적절한 보안 조치를 취하는 것이 중요합니다.
  • Stable Diffusion의 사용과 관련하여 추가 설정이 필요한 경우 해당 프로젝트의 공식 문서를 참조하십시오.

  • 추천 0

  • 비추천 0
이 게시물을
목록

댓글 1

  • 김영훈

    2024.01.02 15:29

    ### 인프라 엔지니어를 위한 Stable Diffusion 설치 및 사용 매뉴얼

    #### 0. 환경 설정
    - **시스템**: Rocky Linux 9
    - **Python 버전**: 3.9
    - **기타 설정**: SELinux 및 방화벽 비활성화

    #### 1. Pip 설치
    1. Python 패키지 관리자 Pip 설치:
       ```bash
       dnf install -y python-pip
       ```
    2. Pip 업그레이드:
       ```bash
       python -m pip install --upgrade pip
       ```

    #### 2. Git 설치
    - Git 설치:
      ```bash
      dnf install -y git
      ```

    #### 3. Stable Diffusion 소스 다운로드
    - Stable Diffusion 리포지토리 클론:
      ```bash
      git clone https://github.com/Stability-AI/stablediffusion
      ```

    #### 4. Python 모듈 설치
    1. 클론된 디렉토리로 이동:
       ```bash
       cd stablediffusion
       ```
    2. 필요한 Python 모듈 설치:
       ```bash
       pip install -r requirements.txt
       ```

    #### 5. Classic Img2Img 사용 방법
    - 명령어:
      ```bash
      python scripts/img2img.py --prompt "A fantasy landscape, trending on artstation" --init-img <path-to-img.jpg> --strength 0.8 --ckpt <path/to/model.ckpt>
      ```

    #### 6. Text-to-Image 사용 방법
    - 가중치 파일(SD2.1-v, SD2.1-base) 다운로드 필요
    - 명령어:
      ```bash
      python scripts/txt2img.py --prompt "a professional photograph of an astronaut riding a horse" --ckpt <path/to/768model.ckpt/> --config configs/stable-diffusion/v2-inference-v.yaml --H 768 --W 768  
      ```

    ---

    **참고사항:**
    - SELinux 및 방화벽 비활성화는 시스템 보안에 영향을 줄 수 있으므로, 필요에 따라 적절한 보안 조치를 취하는 것이 중요합니다.
    - Stable Diffusion의 사용과 관련하여 추가 설정이 필요한 경우 해당 프로젝트의 공식 문서를 참조하십시오.

    추천0 비추천0 댓글

사진 및 파일 첨부

여기에 파일을 끌어 놓거나 왼쪽의 버튼을 클릭하세요.

파일 용량 제한 : 0MB (허용 확장자 : *.*)

업로드 중... (0%)

0개 첨부 됨 ( / )
 
번호 제목 글쓴이 날짜 조회 수
공지 2025 일본 여행 계획 김영훈 2024.10.10 1107
공지 현금, 저축, 투자, 지출, 예산, 보험 내역(2024-05-30) 김영훈 2024.03.10 764
25 CentOS7 php 7.4 + composer 설치 김영훈 2023.08.18 543
24 ELK Stack 테스트 [1] 김영훈 2023.08.30 330
23 sar bash 스크립트 [1] 김영훈 2023.09.05 434
22 자바스크립트 화살표 함수 김영훈 2023.10.06 372
21 rocky linux 9 - init_script.sh 김영훈 2023.12.08 421
20 2023년 월간 소비 비중 file 김영훈 2024.01.01 388
19 AttributeError: module 'tarfile' has no attribute 'data_filter' 에러 김영훈 2024.01.02 749
» Stable Diffusion 설치 - rockylinux9 [테스트 - 나 / 정리 -chatgpt] [1] 김영훈 2024.01.02 855
17 마크다운 TIL 템플릿 김영훈 2024.01.03 597
16 error: rpmdb: BDB2034 unable to allocate memory for mutex; resize mutex region [1] 김영훈 2024.01.08 816
15 Oracle 9i cx_Oracle 클라이언트 연결 방법 [1] 김영훈 2024.01.12 769
14 리눅스 공인 아이피 확인 - curl ipinfo.io 김영훈 2024.01.29 649
13 오라클 클라우드 arm 환경에서 Palworld 서버 구축 [11] 김영훈 2024.01.29 1620
12 Dev-C++ 5.11 설치 매뉴얼 file 김영훈 2024.03.09 960
11 openai api를 이용한 챗봇 구현 샘플 김영훈 2024.06.11 646
10 백업된 디스크 복구 김영훈 2024.06.13 639
9 달력 이미지(chatgpt) file 김영훈 2024.09.05 728
8 정보보안기사 오답노트 김영훈 2024.10.01 528
7 rockylinux8 apache-2.4.16, php-5.3.29 설치 file 김영훈 2024.10.11 708
6 rockylinux8 php7.2 -> php7.4 업그레이드 : dnf module 기능 이용 김영훈 2024.10.14 687
쓰기 태그
 첫 페이지 5 6 7 8 9 10 11 12 13 14 끝 페이지