Whisper AI 사용하기

2023년 10월 12일 목요일
1분 소요
0회

설치

OpenAI에서 개발한 Whisper AI를 사용하기 위해서 먼저 필요한 프로그램을 설치해준다. Whisper AI Github

아래의 설치 명령어중 한가지를 입력해서 설치한다.

shellscript

1

2

3

4

5

6

7

8

# pip로 설치/업데이트
pip install -U openai-whisper

# git의 내용 기반으로 설치
pip install git+https://github.com/openai/whisper.git 

# 레포의 최신버전으로 업데이트
pip install --upgrade --no-deps --force-reinstall git+https://github.com/openai/whisper.git

pip가 설치되어있지 않다면 설치한 후 다시 명령어를 실행한다.

shellscript

1

2

sudo apt update
sudo apt-get install python3-pip -y

추가로 필요한 프로그램을 설치한다. (설치되어있다면 할 필요 없음)

shellscript

1

2

sudo apt update && sudo apt install ffmpeg -y
pip install setuptools-rust

Loading reactions

© 2024 Hopoduck. All rights reserved.