Installation and Verification
- Obtain the Ollama binary file and install it.
1 2
wget https://github.com/ollama/ollama/releases/download/v0.19.0/ollama-linux-arm64.tar.zst tar x -C /usr -f ollama-linux-arm64.tar.zst
- Check whether Ollama is successfully installed.
1ollama --versionIf the following information is displayed, the installation is successful.1client version is 0.19.0
- Start the Ollama service.
1OLLAMA_HOST=0.0.0.0:11434 ollama serve
After the service is started, run the following command to check whether the API is accessible:
1curl http://127.0.0.1:11434/api/tags
Parent topic: Installation Guide