您可以在本地安装 Meilisearch 或通过云服务部署。

Meilisearch 云

Meilisearch Cloud 大大简化了 Meilisearch 的安装、维护和更新。开始 14 天免费试用 查看我们的 Meilisearch Cloud 教程,了解有关设置和使用 Meilisearch 云服务的更多信息。

本地安装

使用 cURL 下载 最新稳定版 Meilisearch。
启动 Meilisearch 以启动服务器。
# Install Meilisearch
curl -L https://install.meilisearch.com | sh

# Launch Meilisearch
./meilisearch

其他云服务

要在第三方云服务上部署 Meilisearch,请遵循我们的专用指南之一

安装旧版本的 Meilisearch

我们不鼓励使用旧版本的 Meilisearch。在安装旧版本之前,请联系支持以检查最新版本是否也适用。
在我们的 GitHub 变更日志的“资产”下下载特定版本的二进制文件。
# Replace {meilisearch_version} and {meilisearch_os} with the specific version and OS you want to download
# For example, if you want to download v1.0 on macOS,
# replace {meilisearch_version} and {meilisearch_os} with v1.0 and meilisearch-macos-amd64 respectively
curl -OL https://github.com/meilisearch/meilisearch/releases/download/{meilisearch_version}/{meilisearch_os}

# Rename binary to meilisearch. Replace {meilisearch_os} with the name of the downloaded binary
mv {meilisearch_os} meilisearch

# Give the binary execute permission
chmod +x meilisearch

# Launch Meilisearch
./meilisearch
© . This site is unofficial and not affiliated with Meilisearch.