Install Mistral Vibe and send your first prompt
Install Mistral Vibe ↗, configure your theme and API key, and send your first prompt directly from the terminal.
- One-line install: get Mistral Vibe running in seconds on macOS or Linux
- Theme selection: choose an interface style for the interactive CLI
- API key configuration: connect Mistral Vibe to your Mistral account on first launch
By the end you will have Mistral Vibe installed, configured, and responding to prompts in your terminal.
Time to complete: ~5 minutes
Prerequisites
- macOS or Linux. Windows users: follow the manual install option below.
- Python 3.12 or later.
- A Mistral account with a Studio›Mistral Vibe API key ↗.
Step 1: Install Mistral Vibe
One-liner (macOS/Linux)
Run this command in your terminal:
curl -LsSf https://mistral.ai/vibe/install.sh | bashManual install (macOS/Linux/Windows)
If you prefer a manual setup, or you are on Windows:
- Confirm Python 3.12+ is installed:
python3 --version. - Install Mistral Vibe with your preferred package manager:
# Using uv (recommended)
uv tool install mistral-vibe
# Using pip
pip install mistral-vibeStep 2: Launch and configure Mistral Vibe
- Open a terminal and navigate to any project directory.
- Run:
vibe
On first launch, Mistral Vibe prompts you to configure two settings:
- Pick a theme. Select the interface style you prefer. You can change this later with the
/themecommand.

- Enter your API key. Generate a key from the Studio›Codestral API keys ↗ page and paste it into the terminal.

Mistral Vibe stores the key locally. You do not need to enter it again.
Step 3: Send your first prompt
Type a request directly into the Mistral Vibe prompt. For example:
List the files in this directory and explain what each one does.
Mistral Vibe reads your project context and responds with relevant information. It can also generate code, edit files, and run shell commands when needed.

To run a shell command directly from Mistral Vibe, prefix it with !. For example: !ls or !git status.
Verify
You have completed the setup:
- Mistral Vibe is installed and available in your terminal (
vibe --versionconfirms it). - Your theme and API key are configured.
- Mistral Vibe responds to prompts with context-aware answers.