# Установить Manticore Search

Установить Manticore Search: простая в использовании открытая быстрая база данных для поиска. Современная, быстрая, легковесная, выдающиеся возможности полнотекстового поиска

## Manticore Search 13.11.0

13 сентября 2025

[Журнал изменений](https://manual.manticoresearch.com/Changelog#Version-13.11.0)


### Менеджеры пакетов
{{< tabs >}}
  {{< tab "APT" >}}
  ### Установить Manticore Search на Debian, Ubuntu или Linux Mint с помощью APT

  Установите репозиторий APT и новую версию:
  ``` bash
  wget https://repo.manticoresearch.com/manticore-repo.noarch.deb
  sudo dpkg -i manticore-repo.noarch.deb
  sudo apt update
  sudo apt install manticore manticore-extra
  ```

  Если вы обновляетесь с более старой версии, рекомендуется сначала удалить старые пакеты, чтобы избежать конфликтов, вызванных изменённой структурой пакетов:
  ```bash
  sudo apt remove 'manticore*'
  ```
  Это не удалит ваши данные или файл конфигурации.

  ### Запуск Manticore

  ``` bash
  sudo systemctl start manticore
  ```

  Подробнее о репозитории APT Manticore Search в [документации](https://manual.manticoresearch.com/Installation/Debian_and_Ubuntu#Installing-Manticore-in-Debian-or-Ubuntu).
  {{< /tab >}}

  {{< tab "YUM" >}}
  ### Установить Manticore Search на CentOS, RHEL, Oracle Linux и Amazon Linux с помощью YUM

  > Этот метод работает только на RHEL 8, 9 и 10 (и совместимых дистрибутивах, таких как CentOS 8/9, Oracle Linux 8/9/10, AlmaLinux 8/9/10). Он не работает на системах на базе RHEL 7.

  Установите репозиторий YUM и новую версию:
  ``` bash
  sudo yum install https://repo.manticoresearch.com/manticore-repo.noarch.rpm
  sudo yum install manticore manticore-extra
  ```

  Если вы обновляетесь с более старой версии, рекомендуется сначала удалить старые пакеты, чтобы избежать конфликтов, вызванных изменённой структурой пакетов:
  ```bash
  sudo yum --setopt=tsflags=noscripts remove 'manticore*'
  ```
  Это не удалит ваши данные. Если вы внесли изменения в файл конфигурации, они будут сохранены в `/etc/manticoresearch/manticore.conf.rpmsave`.

  ### Запуск Manticore

  ``` bash
  sudo systemctl start manticore
  ```

  Подробнее о репозитории YUM Manticore Search в [документации](https://manual.manticoresearch.com/Installation/RHEL_and_Centos#Installing-Manticore-packages-on-RedHat-and-CentOS).
  {{< /tab >}}

  {{< tab "Homebrew" >}}

  ### Установить Manticore Search на macOS с помощью Homebrew

  ``` bash
  brew install manticoresoftware/tap/manticoresearch manticoresoftware/tap/manticore-extra
  ```

  ### Запуск Manticore

  ``` bash
  brew services start manticoresearch
  ```

  Подробнее о пакете Homebrew Manticore Search в [документации](https://manual.manticoresearch.com/Installation/MacOS#Via-Homebrew-package-manager).
  {{< /tab >}}

  {{< tab "Windows via WSL" >}}

  ### Установить Manticore Search в Windows через WSL

  Чтобы установить Manticore Search в Windows, сначала необходимо включить WSL2 (Подсистема Windows для Linux). WSL2 позволяет запускать Linux‑бинарные файлы нативно в Windows. Для работы этого метода требуется Windows 10 версии 2004 и выше или Windows 11.

  #### Установка или включение WSL2

  Следуйте [официальному руководству Microsoft](https://docs.microsoft.com/en-us/windows/wsl/install) для пошаговой установки WSL. В этом руководстве будет использоваться Ubuntu в качестве дистрибутива Linux по умолчанию.

  #### Установка Manticore

  После настройки WSL2 вы можете установить Manticore, добавив репозиторий APT и установив необходимые пакеты Manticore:
  ``` bash
  wget https://repo.manticoresearch.com/manticore-repo.noarch.deb
  sudo dpkg -i manticore-repo.noarch.deb
  sudo apt update
  sudo apt install manticore manticore-extra
  ```

  Если вы обновляетесь с более старой версии, лучше сначала удалить предыдущие пакеты Manticore, чтобы избежать конфликтов с обновлённой структурой пакетов:
  ```bash
  sudo apt remove 'manticore*'
  ```
  Эта команда не удалит ваши данные или файлы конфигурации.

  ### Запуск Manticore

  ``` bash
  sudo systemctl start manticore
  ```

  ### Альтернативный метод: установка отдельными пакетами
  Если вы предпочитаете устанавливать отдельные пакеты без добавления репозитория APT, перейдите к следующему разделу: [Отдельные пакеты](#separate-packages).

  {{< /tab >}}

  {{< tab "Windows installer" >}}

  ### Установить Manticore Search в Windows с помощью установщика

  1. Скачайте [установщик Manticore Search](https://repo.manticoresearch.com/repository/manticoresearch_windows/release/x64/manticore-13.11.0-25091207-35c627a21-x64.exe) и запустите его. Следуйте инструкциям по установке.
  2. Выберите каталог для установки.
  3. Выберите компоненты, которые хотите установить. Мы рекомендуем установить все.
  4. Manticore поставляется с предварительно настроенным файлом `manticore.conf` в [RT‑режиме](https://manual.manticoresearch.com/Read_this_first.md#Real-time-mode-vs-plain-mode). Дополнительная конфигурация не требуется.

  Более подробную информацию об установке и использовании Manticore в Windows см. [в документации](https://manual.manticoresearch.com/Installation/Windows#Installing-Manticore-in-Windows).

  {{< /tab >}}

  {{< tab "Docker" >}}

  ### Запуск Manticore Search в Docker

  ``` bash
  docker run --name manticore -v $(pwd)/data:/var/lib/manticore -p 127.0.0.1:9306:9306 -p 127.0.0.1:9308:9308 -d manticoresearch/manticore
  ```

  Эта конфигурация включит библиотеку Manticore Columnar и Manticore Buddy, а также запустит Manticore на портах 9306 для соединений MySQL и 9308 для всех остальных соединений, используя `./data/` в качестве каталога данных.

  Подробнее о производственном использовании см. [в документации](https://github.com/manticoresoftware/docker#production-use).
  {{< /tab >}}

  {{< tab "Kubernetes Helm Chart" >}}
  ### Установить Manticore Search в Kubernetes с помощью Helm

  ``` bash
  helm repo add manticoresearch https://helm.manticoresearch.com
  # Update values.yaml if needed
  helm install manticore -n manticore --create-namespace manticoresearch/manticoresearch
  ```

  Дополнительную информацию об установке Helm‑чарта см. [в документации](https://github.com/manticoresoftware/manticoresearch-helm#installation).
  {{< /tab >}}


{{< /tabs >}}
<hr>

### Отдельные пакеты
{{< tabs >}}
  {{< tab "Ubuntu" >}}

  {{< collapse "Ubuntu 18 Bionic" >}}
  ``` bash
  source /etc/os-release
  arch=`dpkg --print-architecture`
  wget https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-common_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-converter_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-dev_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-server-core_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-server_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-tools_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore_13.11.0-25091207-35c627a21_${arch}.deb
  sudo apt -y update && sudo apt -y install ./*.deb
  ```
  {{< /collapse >}}
  {{< collapse "Ubuntu 20 Focal" >}}
  ``` bash
  source /etc/os-release
  arch=`dpkg --print-architecture`
  wget https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-common_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-converter_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-dev_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-server-core_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-server_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-tools_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore_13.11.0-25091207-35c627a21_${arch}.deb
  sudo apt -y update && sudo apt -y install ./*.deb
  ```
  {{< /collapse >}}
  {{< collapse "Ubuntu 22 Jammy" >}}
  ``` bash
  source /etc/os-release
  arch=`dpkg --print-architecture`
  wget https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-common_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-converter_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-dev_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-server-core_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-server_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-tools_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore_13.11.0-25091207-35c627a21_${arch}.deb
  sudo apt -y update && sudo apt -y install ./*.deb
  ```
  {{< /collapse >}}

  {{< collapse "Ubuntu 24 Noble" >}}
  ``` bash
  source /etc/os-release
  arch=`dpkg --print-architecture`
  wget https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-common_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-converter_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-dev_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-server-core_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-server_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-tools_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore_13.11.0-25091207-35c627a21_${arch}.deb
  sudo apt -y update && sudo apt -y install ./*.deb
  ```
  {{< /collapse >}}

  {{< /tab >}}

  {{< tab "Debian" >}}

  {{< collapse "Debian 11 Bullseye" >}}
  ```bash
  source /etc/os-release
  arch=`dpkg --print-architecture`
  wget https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-common_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-converter_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-dev_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-server-core_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-server_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-tools_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore_13.11.0-25091207-35c627a21_${arch}.deb
  sudo apt -y update && sudo apt -y install ./*.deb
  ```
  {{< /collapse >}}
  {{< collapse "Debian 12 Bookworm" >}}
  ```bash
  source /etc/os-release
  arch=`dpkg --print-architecture`
  wget https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-common_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-converter_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-dev_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-icudata-65l.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-server-core_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-server_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-tools_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore_13.11.0-25091207-35c627a21_${arch}.deb
  sudo apt -y update && sudo apt -y install ./*.deb
  ```
  {{< /collapse >}}

{{< collapse "Debian 13 Trixie" >}}
  ```bash
  source /etc/os-release
  arch=`dpkg --print-architecture`
  wget https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-common_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-converter_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-dev_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-icudata-65l.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-server-core_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-server_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-tools_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore_13.11.0-25091207-35c627a21_${arch}.deb
  sudo apt -y update && sudo apt -y install ./*.deb
  ```
  {{< /collapse >}}

  {{< /tab >}}

  {{< tab "Centos / RHEL / Alma / Oracle" >}}

  {{< collapse "Centos 8 (Oracle Linux 8, Stream 8)" >}}
  ``` bash
  arch=`arch`
  yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-13.11.0_25091207.35c627a21-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-backup-1.9.6+25070510.5247d066-1.el8.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-buddy-3.35.1+25090418.41d9811f-1.el8.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-columnar-lib-8.0.3+25091012.6d8ff919-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-common-13.11.0_25091207.35c627a21-1.el8.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-converter-13.11.0_25091207.35c627a21-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-devel-13.11.0_25091207.35c627a21-1.el8.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/x86_64/manticore-executor-1.3.5+25070803.6c4be4c1-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/x86_64/manticore-extra-1.3.5+25070803.6c4be4c1-1.el8.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-galera-3.37-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-icudata.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-language-packs-1.0.13_250708.1e9c2cd-1.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-load-1.19.0+25063014.1ff59652-1.el8.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-server-13.11.0_25091207.35c627a21-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-server-core-13.11.0_25091207.35c627a21-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-tools-13.11.0_25091207.35c627a21-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-tzdata-1.0.1_250708.4dfa71e-1.noarch.rpm
  ```
  {{< /collapse >}}

  {{< collapse "Centos 9 (AlmaLinux 9)" >}}
  ``` bash
  arch=`arch`
  yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-13.11.0_25091207.35c627a21-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-backup-1.9.6+25070510.5247d066-1.el9.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-buddy-3.35.1+25090418.41d9811f-1.el9.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-columnar-lib-8.0.3+25091012.6d8ff919-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-common-13.11.0_25091207.35c627a21-1.el9.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-converter-13.11.0_25091207.35c627a21-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-devel-13.11.0_25091207.35c627a21-1.el9.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/x86_64/manticore-executor-1.3.5+25070803.6c4be4c1-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/x86_64/manticore-extra-1.3.5+25070803.6c4be4c1-1.el9.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-galera-3.37-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-icudata.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-language-packs-1.0.13_250708.1e9c2cd-1.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-load-1.19.0+25063014.1ff59652-1.el9.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-server-13.11.0_25091207.35c627a21-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-server-core-13.11.0_25091207.35c627a21-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-tools-13.11.0_25091207.35c627a21-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-tzdata-1.0.1_250708.4dfa71e-1.noarch.rpm
  ```
  {{< /collapse >}}

  {{< collapse "AlmaLinux 10 (and other RHEL 10-based distributions)" >}}
  ``` bash
  arch=`arch`
  yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-13.11.0_25091207.35c627a21-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-backup-1.9.6+25070510.5247d066-1.el10.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-buddy-3.35.1+25090418.41d9811f-1.el10.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-columnar-lib-8.0.3+25091012.6d8ff919-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-common-13.11.0_25091207.35c627a21-1.el10.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-converter-13.11.0_25091207.35c627a21-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-devel-13.11.0_25091207.35c627a21-1.el10.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/x86_64/manticore-executor-1.3.5+25070803.6c4be4c1-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/x86_64/manticore-extra-1.3.5+25070803.6c4be4c1-1.el10.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-galera-3.37-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-icudata-65l.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-language-packs-1.0.13_250708.1e9c2cd-1.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-load-1.19.0+25063014.1ff59652-1.el10.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-server-13.11.0_25091207.35c627a21-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-server-core-13.11.0_25091207.35c627a21-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-tools-13.11.0_25091207.35c627a21-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-tzdata-1.0.1_250708.4dfa71e-1.noarch.rpm
  ```
  {{< /collapse >}}

  {{< /tab >}}

  {{< tab "Mint" >}}
  {{< collapse "Linux Mint 19" >}}

  ``` bash
  arch=`dpkg --print-architecture`
  wget https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb  https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-common_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-converter_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-dev_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-server-core_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-server_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-tools_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore_13.11.0-25091207-35c627a21_${arch}.deb
  sudo apt -y update && sudo apt -y install ./*.deb
  ```
  {{< /collapse >}}

{{< collapse "Linux Mint 20" >}}
  ``` bash
  arch=`dpkg --print-architecture`
  wget https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-common_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-converter_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-dev_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-server-core_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-server_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-tools_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore_13.11.0-25091207-35c627a21_${arch}.deb
  sudo apt -y update && sudo apt -y install ./*.deb
  ```
  {{< /collapse >}}

  {{< collapse "Linux Mint 21" >}}
  ``` bash
  arch=`dpkg --print-architecture`
  wget https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-common_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-converter_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-dev_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-server-core_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-server_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-tools_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore_13.11.0-25091207-35c627a21_${arch}.deb
  sudo apt -y update && sudo apt -y install ./*.deb
  ```
  {{< /collapse >}}

  {{< /tab >}}

  {{< tab "Windows via WSL" >}}
  ``` bash
  mkdir -p /tmp/manticore_install && cd /tmp/manticore_install
  source /etc/os-release
  arch=`dpkg --print-architecture`
  wget https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-converter_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_13.11.0-25091207-35c627a21_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_13.11.0-25091207-35c627a21_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_13.11.0-25091207-35c627a21_${arch}.deb

  sudo chmod -R o+r /tmp/manticore_install

  sudo apt -y update && sudo apt -y install ./*.deb
  ```
  {{< /tab >}}  

{{< /tabs >}}

### Другие загрузки
{{< tabs >}}
  {{< tab "English, German, Russian lemmatizers" >}}
  ### Лемматизаторы для английского, немецкого и русского языков для Manticore Search
  Подробнее о морфологии в Manticore Search [в документации](https://manual.manticoresearch.com/Creating_a_table/NLP_and_tokenization/Morphology).

  ##### Через APT:
  ``` bash
  apt install manticore-language-packs
  ```

  ##### Через YUM:
  ``` bash
  yum install manticore-language-packs
  ```

  ##### Через Homebrew на MacOS:
  ``` bash
  brew tap manticoresoftware/tap
  brew install manticoresoftware/tap/manticore-language-packs
  ```

  ##### Windows (не WSL):
  Распакуйте [en.pak.tgz](https://repo.manticoresearch.com/repository/morphology/en.pak.tgz) для английского, [de.pak.tgz](https://repo.manticoresearch.com/repository/morphology/de.pak.tgz) для немецкого или [ru.pak.tgz](https://repo.manticoresearch.com/repository/morphology/ru.pak.tgz) для русского в папку, указанную как [lemmatizer_base](https://manual.manticoresearch.com/Server_settings/Common#lemmatizer_base) в вашем конфиге, и перезапустите Manticore Search.

  {{< /tab >}}

  {{< tab "Ukrainian lemmatizer" >}}
  ### Украинский лемматизатор для Manticore Search

  {{< collapse "Debian, Ubuntu" >}}
  https://manual.manticoresearch.com/Installation/Debian_and_Ubuntu#Ukrainian-lemmatizer
  {{< /collapse >}}
  {{< collapse "RHEL-based" >}}
  https://manual.manticoresearch.com/Installation/RHEL_and_Centos#Ukrainian-lemmatizer
  {{< /collapse >}}

  {{< /tab >}}

{{< /tabs >}}

## Архивные версии
{{< tabs >}}
  {{< tab "Before 3.5.0" >}}
  Вы можете найти пакеты Manticore Search версии до 3.5.0 в [Github Releases](https://github.com/manticoresoftware/manticoresearch/releases)
  {{< /tab >}}
  {{< tab "Since 3.5.0" >}}
  Вы можете найти пакеты Manticore Search версии с 3.5.0 в [repo.manticoresearch.com](https://repo.manticoresearch.com/)
  {{< /tab >}}
{{< /tabs >}}
