vibe/scripts/install.sh
Mathias Gesbert 51fecc67d9
2.1.0 (#317)
Co-authored-by: Quentin Torroba <quentin.torroba@mistral.ai>
Co-authored-by: Michel Thomazo <michel.thomazo@mistral.ai>
Co-authored-by: Clément Drouin <clement.drouin@mistral.ai>
Co-authored-by: Vincent Guilloux <vincent.guilloux@mistral.ai>
Co-authored-by: Clément Siriex <clement.sirieix@mistral.ai>
Co-authored-by: Kim-Adeline Miguel <kimadeline.miguel@mistral.ai>
Co-authored-by: Nicolas Karolak <nicolas@karolak.fr>
2026-02-11 18:17:30 +01:00

150 lines
3.8 KiB
Bash
Executable file

#!/usr/bin/env bash
# Mistral Vibe Installation Script
# This script installs uv if not present and then installs mistral-vibe using uv
set -euo pipefail
# Colors for output
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m' # No Color
function error() {
echo -e "${RED}[ERROR]${NC} $1" >&2
}
function info() {
echo -e "${BLUE}[INFO]${NC} $1"
}
function success() {
echo -e "${GREEN}[SUCCESS]${NC} $1"
}
function warning() {
echo -e "${YELLOW}[WARNING]${NC} $1"
}
function check_platform() {
local platform=$(uname -s)
if [[ "$platform" == "Linux" ]]; then
info "Detected Linux platform"
PLATFORM="linux"
elif [[ "$platform" == "Darwin" ]]; then
info "Detected macOS platform"
PLATFORM="macos"
else
error "Unsupported platform: $platform"
error "This installation script currently only supports Linux and macOS"
exit 1
fi
}
function check_uv_installed() {
if command -v uv &> /dev/null; then
info "uv is already installed: $(uv --version)"
UV_INSTALLED=true
else
info "uv is not installed"
UV_INSTALLED=false
fi
}
function install_uv() {
info "Installing uv using the official Astral installer..."
if ! command -v curl &> /dev/null; then
error "curl is required to install uv. Please install curl first."
exit 1
fi
if curl -LsSf https://astral.sh/uv/install.sh | sh; then
success "uv installed successfully"
export PATH="$HOME/.local/bin:$PATH"
if ! command -v uv &> /dev/null; then
warning "uv was installed but not found in PATH for this session"
warning "You may need to restart your terminal or run:"
warning " export PATH=\"\$HOME/.cargo/bin:\$HOME/.local/bin:\$PATH\""
fi
else
error "Failed to install uv"
exit 1
fi
}
function check_vibe_installed() {
if command -v vibe &> /dev/null; then
info "vibe is already installed"
VIBE_INSTALLED=true
else
VIBE_INSTALLED=false
fi
}
function install_vibe() {
info "Installing mistral-vibe from GitHub repository using uv..."
uv tool install mistral-vibe
success "Mistral Vibe installed successfully! (commands: vibe, vibe-acp)"
}
function update_vibe() {
info "Updating mistral-vibe from GitHub repository using uv..."
uv tool upgrade mistral-vibe
success "Mistral Vibe updated successfully!"
}
function main() {
echo
echo "██████████████████░░"
echo "██████████████████░░"
echo "████ ██████ ████░░"
echo "████ ██ ████░░"
echo "████ ████░░"
echo "████ ██ ██ ████░░"
echo "██ ██ ██░░"
echo "██████████████████░░"
echo "██████████████████░░"
echo
echo "Starting Mistral Vibe installation..."
echo
check_platform
check_uv_installed
if [[ "$UV_INSTALLED" == "false" ]]; then
install_uv
fi
check_vibe_installed
if [[ "$VIBE_INSTALLED" == "false" ]]; then
install_vibe
else
update_vibe
fi
if command -v vibe &> /dev/null; then
success "Installation completed successfully!"
echo
echo "You can now run vibe with:"
echo " vibe"
echo
echo "Or for ACP mode:"
echo " vibe-acp"
else
error "Installation completed but 'vibe' command not found"
error "Please check your installation and PATH settings"
exit 1
fi
}
main