在本機安裝 Meilisearch

    您可以在本機安裝 Meilisearch,或將其部署在雲端服務上。

    Meilisearch Cloud

    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 更新日誌的「Assets」下,下載特定版本的二進位檔。

    # 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