# Install Faster Whisper on macOS

To use Faster Whisper on macOS, you need to install a few basic components:

* [Install Homebrew](#install-homebrew)
* [Install Python 3.8+](#install-python-3.8)
* [Install FFmpeg](#install-ffmpeg)
* [Install Faster Whisper](#install-faster-whisper)

***

## **Install Homebrew**

Homebrew is a package manager for macOS that makes it easy to install software and development tools like Python, FFmpeg, and many others. It’s the simplest and most reliable way to install dependencies.

**Install Homebrew using the terminal:**

```
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```

***

## **Install Python 3.8+**

Faster Whisper is a package written in Python. You need to have Python installed to run the code and manage dependencies.

{% hint style="success" %}
It is recommended to use Python 3.8 or later to ensure compatibility with current libraries.
{% endhint %}

**Install Python 3.8+ using the terminal:**

```
brew install python
```

***

## **Install FFmpeg**

FFmpeg is an essential tool for processing audio and video files. Faster Whisper uses it to convert and handle audio files in different formats, making it easier to transcribe audio from multiple sources.

**Install FFmpeg using the terminal:**

```
brew install ffmpeg
```

***

## **Install Faster Whisper**

Faster Whisper is an optimized implementation of Whisper (OpenAI’s automatic transcription model). It’s the tool used to convert audio files to text and is installed as a Python package.

{% hint style="success" %}
It is recommended to create and activate a virtual environment to keep dependencies organized and avoid conflicts with other projects.
{% endhint %}

**Create and activate a virtual environment (optional but recommended):**

```
python3 -m venv whisper-env
```

```
source whisper-env/bin/activate
```

**Install Faster Whisper using the terminal:**

```
pip install -U faster-whisper
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dojo.lkmx.io/ingles/faster-whisper/install-faster-whisper-on-macos.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
