레이블이 컴퓨터 팁인 게시물을 표시합니다. 모든 게시물 표시
레이블이 컴퓨터 팁인 게시물을 표시합니다. 모든 게시물 표시

2024년 1월 31일 수요일

[나 같은 컴맹도 한다] 맥북으로 AI 이미지 생성하는 간단한 방법

Scroll down for english  


AI 이미지 생성을 해볼까 하고 검색하다가 발견한 방법이다.


먼저, 컴맹 비슷한 수준의 내가 하는 것이니 누구나 할 수 있는 방법이라고 생각하고

Apple silicon 칩 맥북에 설치하는 방법에 대해 정리하고자 한다.

(내가 직접 설치하다가 작성하는 문서라서.. 윈도우는 윈도 PC에서 설치할 때 작성해 보고자 한다.)


먼저 아래 사이트로 가서 대충 읽어보고 따라해보자.

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


Installation on Apple Silicon

Stable Diffusion web UI. Contribute to AUTOMATIC1111/stable-diffusion-webui development by creating an account on GitHub.

github.com


그런데 쉽지 않다.. 의욕은 있으나...

나처럼 영어 울렁증 있는 분들을 위해...


읽어보고 직접 진행한 내용을 아래와 같이 매우 쉽게 정리코자 한다.



1. 홈브류를 설치한다.(Homebrew, https://brew.sh 에 접속해보라는군..)


홈브류가 뭔지 했더니 패키지 관리자였다. 설치하는 방식은 아래 그림에서 설명한 것과 같이

터미널을 열고 붙여넣기를 하면 된다고 한다.


여기에서 시킨대로 하자면 먼저 터미널 어플을 열고 아래와 같이 커맨드 라인을 붙이면 된다고 한다.


위 화면에서 엔터를 누르면 주르륵 설치가 진행되고...

오, 뭔가 설치를 완료 했다.


설치 완료 후에 아래 내용을 잊지 말고 진행하자.

위 내용은 터미널에서 아래 2줄의 커맨드를 입력해서 홈브류 어플 실행 명령어에 대해서

MacOS 에서 알아들을 수 있도록 PATH에 넣어줘야 한다는 뜻이다.


(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/내계정명/.zprofile

eval "$(/opt/homebrew/bin/brew shellenv)"



2. 그 다음 brew install cmake protobuf rust python@3.10 git wget 이 명령어를 터미널에서 실행한다.


아래 명령어를 복사해서 터미널에 붙여넣자!

brew install cmake protobuf rust python@3.10 git wget

실행하니 아래와 같이 알아서 열심히 다운 받고 설치해준다.


3. 그 다음은 git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui 를 터미널에서 실행한다.

아래 명령어를 터미널에 붙여 넣으면 아래 그림처럼 진행 및 완료된다.

git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui



4. 그리고 나서 Stable-diffusion 모델을 다운받아서 넣으라고 하는데... 아래 그림의 링크에서 다운받고 

계정 폴더 아래 있는 stable-diffusion-webui / models / Stable-diffusion 으로 복사해준다.



5. 또한  아래의 Here 를 눌러 다운 받은 다음 4번에 다운 받은 ckpt 확장자 파일 이름과 같이 변경하여 yaml 확장자 파일로 같은 Stable-diffusion 폴더에 넣어준다.




6. 이제 대충 된것 같은데, cd stable-diffusion-webui 폴더로 이동하고 ./webui.sh 를 입력하여

본격적인 Python virtual 환경 설치 및 실행을 해보자.(필요한 것들은 알아서 다운받아 설치해준다.)


./webui.sh 를 입력했더니 아래와 같은 유저 인터페이스 창이 떴다.




음... 이제 Stable Diffusion Checkpoint 를 선택하고 Text를 적당히 입력해서 테스트 하면...



짜잔.... 

나 같은 컴맹 수준의 유저도 이렇게 간단히 완료했다.



"I came across a method while searching to try AI image generation.

First, since I am doing this at a level similar to a computer novice, I thought it would be something anyone could do, and I want to organize the process of installing it on an Apple Silicon chip MacBook.

(As I am documenting the process of installing it myself... I will try writing a document for installing it on a Windows PC later.)

First, let's go to the following site and roughly read and try to follow the instructions.

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

Installation on Apple Silicon

Stable Diffusion web UI. Contribute to AUTOMATIC1111/stable-diffusion-webui development by creating an account on GitHub.

github.com

However, it's not easy... I have the enthusiasm, but for those who, like me, have a fear of English...

After reading it, I want to summarize the content of what I did in a very simple way as follows:

  1. Install Homebrew. (Homebrew, go to https://brew.sh..)

I found out that Homebrew is a package manager. The installation method is to open the terminal and paste it as shown in the figure below.

If you follow the instructions here, first open the terminal app and paste the command line as shown below.

Press Enter on the screen above, and the installation will proceed smoothly...

Oh, something seems to have been installed.

After installation, don't forget to proceed with the following:

The above means that you need to enter the following two lines of commands in the terminal to put the Homebrew app execution command into the PATH so that MacOS can understand it.

(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/YourAccountName/.zprofile eval "$(/opt/homebrew/bin/brew shellenv)"

  1. Next, run the command brew install cmake protobuf rust python@3.10 git wget in the terminal.

Copy and paste the command below into the terminal!

brew install cmake protobuf rust python@3.10 git wget

When executed, it automatically downloads and installs as shown below.

  1. Next, run git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui in the terminal.

Copy and paste the command below into the terminal, and it progresses and completes as shown below.

git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui

  1. After that, download the Stable-diffusion model and copy it to the stable-diffusion-webui/models/Stable-diffusion folder in your account folder.

  2. Also, download from the link below by clicking on 'Here' and put it in the Stable-diffusion folder with the same name as the ckpt extension file downloaded in step 4, changing it to a yaml extension file.

  3. Now that it seems roughly done, go to the stable-diffusion-webui folder and enter ./webui.sh to install and run the Python virtual environment in earnest. (It automatically downloads and installs what is needed.)

When I entered ./webui.sh, the user interface window below appeared.

Now, select Stable Diffusion Checkpoint, enter some text for testing, and...

Voila! Even a computer novice like me completed it easily."

2021년 3월 31일 수요일

아래아 한글 프로그램 없이 HWP 파일을 여는 몇 가지 팁

 HWP 확장자를 가진 파일을 열기 위해서는

아래아 한글 프로그램을 설치해야 하는 시절이 있었다. 


이 아래아 한글은 자랑스러운 한국의 프로그램이기도 하지만

갈라파고스 파일 포맷 정책 등 몇 가지 전략 오류로 조금씩 쇠퇴하더니


십몇 년 전부터는 교육, 군부대, 관공서 등 정부와 관련된 일을 하는 사람이 아니라면

보기 힘든 그 프로그램일지도 모른다. ㅜㅜ;

(그만큼 MS word 에 종속되어 버렸다는...)


아무튼 요즘에도 정부 사이트에서 자료를 다운 받게되면

HWP 포맷을 보게 되는데,


이 때... 참 고민된다..

이거 잠깐 보려고 아래아 한글 프로그램을 사야하나?

아니면 아래아 한글 뷰어를 깔아야 하나?


이럴 때 간단히 해결 가능한 몇가지 방법이 있어서 공유하고자 한다.


개인적으로는 정부에서 배포하는 자료 등을 볼 때는 1번 또는 2번을 많이 활용하고

나중에 활용을 위해 장기 보관해야 겠다고 생각하는 파일은 네이버 오피스를 이용하니

편한 것 같기도...


1. https://hwp.polarisoffice.com/  폴라리스 오피스 사이트를 이용하는 방법

-- 가입이 필요 없어서 간단히 이용하기에 좋다.





2. https://allinpdf.com/kr/hwp-viewer All in PDF 사이트를 이용하는 방법

-- 가입이 필요 없어서 간단히 이용하기에 좋다.




3. https://office.naver.com/ 네이버 오피스 사이트를 이용하는 방법

-- 네이버 ID로 가입을 해야 이용이 가능하다.



4. https://space.malangmalang.com/ 한컴 스페이스 사이트를 이용하는 방법

-- 별도로 한컴 스페이스 사이트에서 한컴 오피스를 다운받아 설치해야 하고

    한컴 스페이스에 개인은 Freemium 요금제에 가입해야 한다.
    (정확히 이야기 하자면 웹사이트에서 바로 이용하는게 아니다)