You can read this document in English/영어 or Korean/한국어.
VersaTiles Installation Guide
This guide outlines different ways to install VersaTiles on your system:
TIP
If you want to setup your own map server, use our "Setup Tool" to generate the necessary shell code: versatiles.org/tools/setup_server
Using Homebrew (macOS)
To install VersaTiles using Homebrew, run the following commands in your terminal:
brew tap versatiles-org/versatiles
brew install versatilesTo upgrade to the latest version, use:
brew update
brew upgrade versatilesUsing the Install Script
You can use the install script to download and install the appropriate precompiled binary for your system. The script automatically places the binary in /usr/local/bin/.
Run the following command:
curl -Ls "https://github.com/versatiles-org/versatiles-rs/raw/main/scripts/install-unix.sh" | sudo shBuilding with Cargo
Ensure that you have Rust and Cargo installed. Then, install VersaTiles with:
cargo install versatilesBuilding from Source
To manually build VersaTiles from the source code, follow these steps:
git clone https://github.com/versatiles-org/versatiles-rs.git
cd versatiles-rs
cargo build --bin versatiles --release
cp ./target/release/versatiles /usr/local/bin/Additional Information
For more details, including Docker support and installation on NixOS, refer to the Installation section of the VersaTiles repository.